28
.github/workflows/ci.yml
vendored
@@ -84,7 +84,7 @@ jobs:
|
||||
echo "[已有 Mirror酱 CDK?前往 Mirror酱 高速下载](https://mirrorchyan.com/zh/projects?rid=MAA&source=maagh-release)" >> CHANGELOG.md
|
||||
|
||||
- name: Upload changelog to GitHub
|
||||
uses: actions/upload-artifact@v5
|
||||
uses: actions/upload-artifact@v6
|
||||
if: startsWith(github.ref, 'refs/tags/v')
|
||||
with:
|
||||
name: changelog
|
||||
@@ -112,7 +112,7 @@ jobs:
|
||||
|
||||
- name: Cache MaaDeps
|
||||
id: cache-maadeps
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
continue-on-error: true
|
||||
with:
|
||||
path: |
|
||||
@@ -142,7 +142,7 @@ jobs:
|
||||
|
||||
- name: Cache .nuke/temp, ~/.nuget/packages
|
||||
id: cache-nuget
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
continue-on-error: true
|
||||
with:
|
||||
path: |
|
||||
@@ -184,7 +184,7 @@ jobs:
|
||||
continue-on-error: true
|
||||
|
||||
- name: Upload PDB files
|
||||
uses: actions/upload-artifact@v5
|
||||
uses: actions/upload-artifact@v6
|
||||
with:
|
||||
name: MAAComponent-DebugSymbol-win-${{ matrix.arch }}
|
||||
path: install/MAAComponent-DebugSymbol-${{ needs.meta.outputs.tag }}-win-${{ matrix.arch }}.zip
|
||||
@@ -205,7 +205,7 @@ jobs:
|
||||
Compress-Archive -Destination MAA-${{ needs.meta.outputs.tag }}-win-${{ matrix.arch }}.zip -Path ./*
|
||||
|
||||
- name: Upload MAA to GitHub
|
||||
uses: actions/upload-artifact@v5
|
||||
uses: actions/upload-artifact@v6
|
||||
with:
|
||||
name: MAA-win-${{ matrix.arch }}
|
||||
path: install/MAA-*.zip
|
||||
@@ -232,7 +232,7 @@ jobs:
|
||||
|
||||
- name: Cache MaaDeps
|
||||
id: cache-maadeps
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
continue-on-error: true
|
||||
with:
|
||||
path: ./src/MaaUtils/MaaDeps
|
||||
@@ -324,7 +324,7 @@ jobs:
|
||||
tar czvf $GITHUB_WORKSPACE/release/MAA-${{ needs.meta.outputs.tag }}-linux-${{ matrix.arch }}.tar.gz .
|
||||
|
||||
- name: Upload MAA to GitHub
|
||||
uses: actions/upload-artifact@v5
|
||||
uses: actions/upload-artifact@v6
|
||||
with:
|
||||
name: MAA-linux-${{ matrix.arch }}
|
||||
path: |
|
||||
@@ -356,7 +356,7 @@ jobs:
|
||||
|
||||
- name: Cache MaaDeps
|
||||
id: cache-maadeps
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
continue-on-error: true
|
||||
with:
|
||||
path: ./src/MaaUtils/MaaDeps
|
||||
@@ -384,7 +384,7 @@ jobs:
|
||||
cmake --install build --prefix install --config RelWithDebInfo
|
||||
|
||||
- name: Upload MAA to GitHub
|
||||
uses: actions/upload-artifact@v5
|
||||
uses: actions/upload-artifact@v6
|
||||
with:
|
||||
name: MAACore-macos-${{ matrix.arch }}
|
||||
path: "install/*.dylib"
|
||||
@@ -410,13 +410,13 @@ jobs:
|
||||
git submodule update --init --depth 1 src/MaaMacGui
|
||||
|
||||
- name: Download MAA (arm64) from GitHub
|
||||
uses: actions/download-artifact@v6
|
||||
uses: actions/download-artifact@v7
|
||||
with:
|
||||
name: MAACore-macos-arm64
|
||||
path: install-arm64
|
||||
|
||||
- name: Download MAA (x64) from GitHub
|
||||
uses: actions/download-artifact@v6
|
||||
uses: actions/download-artifact@v7
|
||||
with:
|
||||
name: MAACore-macos-x86_64
|
||||
path: install-x86_64
|
||||
@@ -462,7 +462,7 @@ jobs:
|
||||
zip -yrX9 "$name.zip" "$name"
|
||||
|
||||
- name: Upload MAA runtime to GitHub
|
||||
uses: actions/upload-artifact@v5
|
||||
uses: actions/upload-artifact@v6
|
||||
with:
|
||||
name: MAA-macos-runtime-universal
|
||||
path: runtime/MAA-${{ needs.meta.outputs.tag }}-macos-runtime-universal.zip
|
||||
@@ -544,7 +544,7 @@ jobs:
|
||||
working-directory: release
|
||||
|
||||
- name: Upload MAA to GitHub
|
||||
uses: actions/upload-artifact@v5
|
||||
uses: actions/upload-artifact@v6
|
||||
with:
|
||||
name: MAA-macos-universal
|
||||
path: ${{ startsWith(github.ref, 'refs/tags/v') && 'release/MAA*' || 'src/MaaMacGui/MAA.xcarchive/**' }}
|
||||
@@ -556,7 +556,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Download MAA from GitHub
|
||||
uses: actions/download-artifact@v6
|
||||
uses: actions/download-artifact@v7
|
||||
with:
|
||||
path: assets
|
||||
|
||||
|
||||
2
.github/workflows/markdown-checker.yml
vendored
@@ -36,7 +36,7 @@ jobs:
|
||||
show-progress: false
|
||||
|
||||
- name: Cache lychee responses
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
continue-on-error: true
|
||||
with:
|
||||
path: .lycheecache
|
||||
|
||||
41
.github/workflows/pre-commit-scheduled.yml
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
name: Scheduled Pre-commit
|
||||
|
||||
on:
|
||||
schedule:
|
||||
# 每天 UTC 21:00 运行(北京时间 5:00)
|
||||
- cron: "0 21 * * *"
|
||||
workflow_dispatch: # 允许手动触发
|
||||
|
||||
jobs:
|
||||
pre-commit:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: "3.12"
|
||||
|
||||
- name: Install pre-commit
|
||||
run: pip install pre-commit
|
||||
|
||||
- name: Run pre-commit on all files
|
||||
id: pre-commit
|
||||
continue-on-error: true
|
||||
run: pre-commit run --all-files
|
||||
|
||||
- name: Commit and push changes
|
||||
if: steps.pre-commit.outcome == 'failure' && github.repository_owner == 'MaaAssistantArknights'
|
||||
uses: actions-js/push@master
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
message: "chore: Auto update by pre-commit hooks
|
||||
|
||||
https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
|
||||
|
||||
[skip changelog]"
|
||||
branch: ${{ github.ref }}
|
||||
10
.github/workflows/release-nightly-ota.yml
vendored
@@ -171,7 +171,7 @@ jobs:
|
||||
|
||||
- name: Cache MaaDeps
|
||||
id: cache-maadeps
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
continue-on-error: true
|
||||
with:
|
||||
path: |
|
||||
@@ -201,7 +201,7 @@ jobs:
|
||||
|
||||
- name: Cache .nuke/temp, ~/.nuget/packages
|
||||
id: cache-nuget
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
continue-on-error: true
|
||||
with:
|
||||
path: |
|
||||
@@ -242,7 +242,7 @@ jobs:
|
||||
continue-on-error: true
|
||||
|
||||
- name: Upload PDB files
|
||||
uses: actions/upload-artifact@v5
|
||||
uses: actions/upload-artifact@v6
|
||||
with:
|
||||
name: MAAComponent-DebugSymbol-win-${{ matrix.arch }}
|
||||
path: install/MAAComponent-DebugSymbol-${{ steps.set_tag.outputs.tag }}-win-${{ matrix.arch }}.zip
|
||||
@@ -258,7 +258,7 @@ jobs:
|
||||
cp tools/DependencySetup_依赖库安装.bat install
|
||||
|
||||
- name: Upload MAA to GitHub
|
||||
uses: actions/upload-artifact@v5
|
||||
uses: actions/upload-artifact@v6
|
||||
with:
|
||||
name: MAA-win-${{ matrix.arch }}
|
||||
path: install
|
||||
@@ -319,7 +319,7 @@ jobs:
|
||||
show-progress: false
|
||||
|
||||
- name: Download MAA from GitHub
|
||||
uses: actions/download-artifact@v6
|
||||
uses: actions/download-artifact@v7
|
||||
with:
|
||||
name: MAA-win-${{ matrix.target }}
|
||||
path: ${{ format('{0}/{1}', 'build-ota', needs.build-win-nightly.outputs.tag) }}
|
||||
|
||||
4
.github/workflows/release-ota.yml
vendored
@@ -77,7 +77,7 @@ jobs:
|
||||
PUSH_REMOTE: https://github-actions[bot]:${{ secrets.MAARELEASE_RELEASE }}@github.com/${{ github.repository_owner }}/MaaRelease
|
||||
|
||||
- name: Upload release config to GitHub
|
||||
uses: actions/upload-artifact@v5
|
||||
uses: actions/upload-artifact@v6
|
||||
with:
|
||||
name: MaaReleaseConfig
|
||||
path: ./build-ota/config
|
||||
@@ -96,7 +96,7 @@ jobs:
|
||||
- x64
|
||||
steps:
|
||||
- name: Download release config
|
||||
uses: actions/download-artifact@v6
|
||||
uses: actions/download-artifact@v7
|
||||
with:
|
||||
name: MaaReleaseConfig
|
||||
path: ./MaaReleaseConfig
|
||||
|
||||
@@ -55,78 +55,49 @@ jobs:
|
||||
name: Upload to MirrorChyan
|
||||
needs: meta
|
||||
if: ${{ github.event.inputs.mirrorchyan == 'true' }}
|
||||
runs-on: macos-latest
|
||||
runs-on: ubuntu-latest
|
||||
continue-on-error: true
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- os: win
|
||||
arch: x64
|
||||
filename: "*MAA-*-win-x64.zip"
|
||||
extra_zip: false
|
||||
- os: win
|
||||
arch: arm64
|
||||
filename: "*MAA-*-win-arm64.zip"
|
||||
extra_zip: false
|
||||
- os: macos
|
||||
arch: arm64
|
||||
filename: "MAA-*-macos-universal.dmg"
|
||||
extra_zip: true
|
||||
- os: macos
|
||||
arch: x64
|
||||
filename: "MAA-*-macos-universal.dmg"
|
||||
extra_zip: true
|
||||
|
||||
env:
|
||||
RELEASE_TAG: ${{ needs.meta.outputs.RELEASE_TAG }}
|
||||
|
||||
steps:
|
||||
- name: Upload MAA win x64
|
||||
- name: Upload MAA ${{ matrix.os }} ${{ matrix.arch }}
|
||||
uses: MirrorChyan/uploading-action@v1
|
||||
continue-on-error: true
|
||||
with:
|
||||
filetype: latest-release
|
||||
filename: "*MAA-*-win-x64.zip"
|
||||
filename: ${{ matrix.filename }}
|
||||
extra_zip: ${{ matrix.extra_zip }}
|
||||
tag: ${{ env.RELEASE_TAG }}
|
||||
mirrorchyan_rid: MAA
|
||||
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
owner: ${{ github.repository_owner }}
|
||||
repo: ${{ github.event.repository.name }}
|
||||
upload_token: ${{ secrets.MirrorChyanUploadToken }}
|
||||
os: win
|
||||
arch: x64
|
||||
|
||||
- name: Upload MAA win arm64
|
||||
uses: MirrorChyan/uploading-action@v1
|
||||
continue-on-error: true
|
||||
with:
|
||||
filetype: latest-release
|
||||
filename: "*MAA-*-win-arm64.zip"
|
||||
tag: ${{ env.RELEASE_TAG }}
|
||||
mirrorchyan_rid: MAA
|
||||
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
owner: ${{ github.repository_owner }}
|
||||
repo: ${{ github.event.repository.name }}
|
||||
upload_token: ${{ secrets.MirrorChyanUploadToken }}
|
||||
os: win
|
||||
arch: arm64
|
||||
|
||||
- name: Upload MAA macos arm64
|
||||
uses: MirrorChyan/uploading-action@v1
|
||||
continue-on-error: true
|
||||
with:
|
||||
filetype: latest-release
|
||||
filename: "MAA-*-macos-universal.dmg"
|
||||
extra_zip: true
|
||||
tag: ${{ env.RELEASE_TAG }}
|
||||
mirrorchyan_rid: MAA
|
||||
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
owner: ${{ github.repository_owner }}
|
||||
repo: ${{ github.event.repository.name }}
|
||||
upload_token: ${{ secrets.MirrorChyanUploadToken }}
|
||||
os: macos
|
||||
arch: arm64
|
||||
|
||||
- name: Upload MAA macos x64
|
||||
uses: MirrorChyan/uploading-action@v1
|
||||
continue-on-error: true
|
||||
with:
|
||||
filetype: latest-release
|
||||
filename: "MAA-*-macos-universal.dmg"
|
||||
extra_zip: true
|
||||
tag: ${{ env.RELEASE_TAG }}
|
||||
mirrorchyan_rid: MAA
|
||||
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
owner: ${{ github.repository_owner }}
|
||||
repo: ${{ github.event.repository.name }}
|
||||
upload_token: ${{ secrets.MirrorChyanUploadToken }}
|
||||
os: macos
|
||||
arch: x64
|
||||
os: ${{ matrix.os }}
|
||||
arch: ${{ matrix.arch }}
|
||||
|
||||
winget:
|
||||
name: Upload to WinGet
|
||||
|
||||
2
.github/workflows/release-preparation.yml
vendored
@@ -80,7 +80,7 @@ jobs:
|
||||
git commit -m "$commit_msg"
|
||||
|
||||
- name: Create changelog PR
|
||||
uses: peter-evans/create-pull-request@v7
|
||||
uses: peter-evans/create-pull-request@v8
|
||||
with:
|
||||
sign-commits: true
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
20
.github/workflows/res-update-game.yml
vendored
@@ -37,7 +37,7 @@ jobs:
|
||||
/gamedata/excel/activity_table.json
|
||||
|
||||
- name: Upload Official resources
|
||||
uses: actions/upload-artifact@v5
|
||||
uses: actions/upload-artifact@v6
|
||||
with:
|
||||
name: official
|
||||
path: ./Official
|
||||
@@ -80,7 +80,7 @@ jobs:
|
||||
/kr/gamedata/excel/activity_table.json
|
||||
|
||||
- name: Upload Overseas resources
|
||||
uses: actions/upload-artifact@v5
|
||||
uses: actions/upload-artifact@v6
|
||||
with:
|
||||
name: overseas
|
||||
path: ./Overseas
|
||||
@@ -133,7 +133,7 @@ jobs:
|
||||
fi
|
||||
|
||||
- name: Upload Taiwan resources
|
||||
uses: actions/upload-artifact@v5
|
||||
uses: actions/upload-artifact@v6
|
||||
with:
|
||||
name: txwy
|
||||
path: ./excel
|
||||
@@ -159,7 +159,7 @@ jobs:
|
||||
|
||||
- name: Restore ResourceUpdater from cache
|
||||
id: resupd-cache
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
continue-on-error: true
|
||||
with:
|
||||
key: ResourceUpdater-${{ runner.os }}-${{ hashFiles('tools/ResourceUpdater/main.cpp') }}
|
||||
@@ -170,7 +170,7 @@ jobs:
|
||||
- name: Cache MaaDeps
|
||||
if: steps.resupd-cache.outputs.cache-hit != 'true'
|
||||
id: maadeps-cache
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
continue-on-error: true
|
||||
with:
|
||||
path: |
|
||||
@@ -206,7 +206,7 @@ jobs:
|
||||
|
||||
- name: Save ResourceUpdater to cache
|
||||
if: always() && steps.resupd-cache.outputs.cache-hit != 'true'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
continue-on-error: true
|
||||
with:
|
||||
key: ResourceUpdater-${{ runner.os }}-${{ hashFiles('tools/ResourceUpdater/main.cpp') }}
|
||||
@@ -225,19 +225,19 @@ jobs:
|
||||
ttl: 15
|
||||
|
||||
- name: Download txwy
|
||||
uses: actions/download-artifact@v6
|
||||
uses: actions/download-artifact@v7
|
||||
with:
|
||||
name: txwy
|
||||
path: ./tools/ResourceUpdater/Overseas/tw/gamedata/excel
|
||||
|
||||
- name: Download Overseas
|
||||
uses: actions/download-artifact@v6
|
||||
uses: actions/download-artifact@v7
|
||||
with:
|
||||
name: overseas
|
||||
path: ./tools/ResourceUpdater/Overseas
|
||||
|
||||
- name: Download Official
|
||||
uses: actions/download-artifact@v6
|
||||
uses: actions/download-artifact@v7
|
||||
with:
|
||||
name: official
|
||||
path: ./tools/ResourceUpdater/Official
|
||||
@@ -271,7 +271,7 @@ jobs:
|
||||
- name: Cache python packages
|
||||
if: always() && steps.update_version.outputs.contains_png == 'True'
|
||||
id: cache_python
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
continue-on-error: true
|
||||
with:
|
||||
path: ${{ env.pythonLocation }}/Lib/site-packages
|
||||
|
||||
8
.github/workflows/smoke-testing.yml
vendored
@@ -54,7 +54,7 @@ jobs:
|
||||
- name: Restore cache for Smoke Test
|
||||
if: ${{ steps.cache_key.outputs.key != '' }}
|
||||
id: smoke-cache
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
continue-on-error: true
|
||||
with:
|
||||
key: ${{ steps.cache_key.outputs.key }}
|
||||
@@ -74,7 +74,7 @@ jobs:
|
||||
- name: Cache MaaDeps
|
||||
if: steps.smoke-cache.outputs.cache-hit != 'true'
|
||||
id: maadeps-cache
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
continue-on-error: true
|
||||
with:
|
||||
path: ./src/MaaUtils/MaaDeps
|
||||
@@ -120,7 +120,7 @@ jobs:
|
||||
|
||||
- name: Save cache for Smoke Test (only in dev)
|
||||
if: steps.smoke-cache.outputs.cache-hit != 'true' && github.ref == 'refs/heads/dev'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
continue-on-error: true
|
||||
with:
|
||||
key: ${{ steps.cache_key.outputs.key }}
|
||||
@@ -134,7 +134,7 @@ jobs:
|
||||
|
||||
- name: Upload logs
|
||||
if: always()
|
||||
uses: actions/upload-artifact@v5
|
||||
uses: actions/upload-artifact@v6
|
||||
with:
|
||||
name: logs
|
||||
path: ./install/debug
|
||||
|
||||
2
.github/workflows/website-workflow.yml
vendored
@@ -61,7 +61,7 @@ jobs:
|
||||
working-directory: "./docs"
|
||||
|
||||
- name: Upload artifact to GitHub
|
||||
uses: actions/upload-artifact@v5
|
||||
uses: actions/upload-artifact@v6
|
||||
with:
|
||||
name: dist
|
||||
path: "./docs/.vuepress/dist"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
default_install_hook_types: [pre-commit, prepare-commit-msg]
|
||||
ci:
|
||||
autofix_commit_msg: "chore: Auto update by pre-commit hooks [skip changelog]"
|
||||
autofix_prs: true
|
||||
# 禁用 pre-commit.ci 自动运行,改用 GitHub Actions 定时任务
|
||||
skip: [oxipng, clang-format, prettier, black, isort, markdownlint-cli2]
|
||||
repos:
|
||||
- repo: https://github.com/shssoichiro/oxipng
|
||||
rev: v9.1.5
|
||||
|
||||
61
CHANGELOG.md
@@ -1,16 +1,71 @@
|
||||
## v6.0.1
|
||||
|
||||
### Highlights
|
||||
Quick Fix for EN (Global) IS in the Stage Trader
|
||||
|
||||
Quick Fix for EN (Global) RA2 post crafting
|
||||
#### .NET 10 升级
|
||||
|
||||
Translation for SSS#8 copilot jobs
|
||||
MAA 已升级至 .NET 10,带来性能与开发体验改进;取消单文件发布同时将第三方依赖移至子文件夹,在保持目录清爽的同时有效减少更新包的体积。 (PR #14971, #14984) @SherkeyXD @ABA2396
|
||||
|
||||
#### 关卡导航与小游戏优化
|
||||
|
||||
重构关卡导航 API,小游戏列表可通过 API 动态获取并支持配置小游戏开放时间,增强灵活性与可配置性。 (PR #14997) @ABA2396
|
||||
|
||||
----
|
||||
|
||||
#### .NET 10 Upgrade
|
||||
|
||||
MAA has been upgraded to .NET 10, improving performance and the developer experience. Cancel the single file release and move third-party dependencies to subfolders, effectively reducing update package size while keeping the directory clean. (PR #14971) @SherkeyXD @ABA2396
|
||||
|
||||
#### Stage Navigation and Mini-game Optimization
|
||||
|
||||
Refactored the stage navigation API. Mini-game lists can be retrieved via API and opening times configured, improving flexibility. (PR #14997, #14984) @ABA2396
|
||||
|
||||
#### EN (Global) IS Fix (v6.0.1)
|
||||
|
||||
Quick Fix for EN (Global) IS in the Stage Trader
|
||||
Quick Fix for EN (Global) RA2 post crafting
|
||||
Translation for SSS#8 copilot jobs
|
||||
Fixes to the missions collection post client update
|
||||
|
||||
----
|
||||
|
||||
以下是详细内容:
|
||||
|
||||
## v6.0.0
|
||||
|
||||
### 新增 | New
|
||||
|
||||
* `LocalizationHelper` 支持 `TryGetString` 与 `HasTranslation` @ABA2396
|
||||
* 将第三方依赖移至子文件夹以减小更新包体积 (PR #14984) @ABA2396
|
||||
|
||||
### 改进 | Improved
|
||||
|
||||
* 重构关卡导航 API,小游戏列表通过 API 获取并支持配置开放时间 (PR #14997) @ABA2396
|
||||
* Roguelike:StageTrader 与 OCR 兼容性与 UI 优化,改进多区域支持 (PR #15047, #15026) @Manicsteiner @HX3N
|
||||
* 将部分 P/Invoke 从 `DllImport` 切换为 `LibraryImport`,提高跨平台兼容性 @status102
|
||||
|
||||
### 修复 | Fix
|
||||
|
||||
* 修复 nightly OTA dotnet 构建问题 (PR #14996) @Manicsteiner
|
||||
* 修复资源更新时创建 ToolTip 失败的问题 @ABA2396
|
||||
* 修复自动编队/助战模块中 retry 与标记导致的重复或遗漏问题 @status102
|
||||
* 修复多活动同时开放时被错误折叠的问题 @ABA2396
|
||||
|
||||
### 文档 | Docs
|
||||
|
||||
* 在 VS Code 扩展中补充日志查看说明 (PR #14696) @NtskwK
|
||||
* 在文档中更新 .NET 版本说明为 10 (PR #15023) @wryx166
|
||||
|
||||
### 其他 | Other
|
||||
|
||||
* 移除废弃的右键添加作业集行为 @status102
|
||||
* 移除不再使用的 `report` 与相关引用 @status102
|
||||
* 若干 OCR 与文本替换的局部改进 YostarKR / YostarJP @HX3N @Manicsteiner
|
||||
|
||||
----
|
||||
|
||||
## v6.0.1
|
||||
|
||||
### 新增 | New
|
||||
|
||||
* 为 MuMu/LDPlayer 添加路径/库检查并补充 i18n 提示 @ABA2396
|
||||
|
||||
@@ -33,7 +33,7 @@ All features involving Copilot require the following prerequisites, including bu
|
||||
| Mizuki | Surging Waves·3~7 | People-Oriented Squad / Mind Over Matter Squad | Slow and Steady Wins the Race | Wiš'adel |
|
||||
| Sami | Braving Nature·4~10 | Special Training Squad / Tactical Ranged Squad | Slow and Steady Wins the Race | Wiš'adel |
|
||||
| Sarkaz | Facing Souls·4~10 | Blueprint Mapping Squad / Tactical Ranged Squad | Slow and Steady Wins the Race | Wiš'adel |
|
||||
| Garden | Enter the Garden·3~10 | Leader Squad / Tactical Ranged Squad | Slow and Steady Wins the Race | Wiš'adel |
|
||||
| Garden | Guided Tour·3~10 | Leader Squad / Tactical Ranged Squad | Slow and Steady Wins the Race | Wiš'adel |
|
||||
|
||||
The recommended difficulties consider factors like `enemy difficulty`, `hope consumption`, and `score multiplier`, and have been tested to be stable with high-level operators. Feel free to adjust based on your situation and needs.
|
||||
|
||||
@@ -43,7 +43,7 @@ The recommended difficulties consider factors like `enemy difficulty`, `hope con
|
||||
| Mizuki | `Surging Waves·4` and higher difficulties increase six-star operator hope cost by +1, making it potentially impossible to recruit them with `Mind Over Matter Squad`.<br>`People-Oriented Squad` is better for high-level accounts, while `Mind Over Matter Squad` requires luck. |
|
||||
| Sami | `Braving Nature·6` and higher difficulties increase six-star operator hope cost by +1, making it potentially impossible to recruit them with `Special Training Squad`. |
|
||||
| Sarkaz | `Facing Souls·15` and higher difficulties increase six-star operator hope cost by +1, making it potentially impossible to recruit them with `Blueprint Mapping Squad` unless `Blueprint Mapping Squad Enhancement Ⅱ` has been activated in `Historical Reconstruction`.<br>When `Blueprint Mapping Squad` is selected, MAA will use a combat-avoidance strategy to quickly collect `Soul Bookmarks`, though it typically makes it impossible to witness an ending.<br>When the Originium Ingot farming strategy and the `Ingots Squad` are selected, MAA will use the shop refreshing strategy to speed up the process. |
|
||||
| Garden | `Enter the Garden·15` and higher difficulties increase six-star operator hope cost by +1, making it potentially impossible to recruit them with `Leader Squad`.<br>When `Enter the Garden·3` difficulty, the Originium Ingot farming strategy and `Leader Squad` are selected, MAA will use the `End of Time` stage-skip strategy to speed up the process. |
|
||||
| Garden | `Guided Tour·15` and higher difficulties increase six-star operator hope cost by +1, making it potentially impossible to recruit them with `Leader Squad`.<br>When `Guided Tour·3` difficulty is selected, with the Originium Ingot farming strategy and `Leader Squad` selected, MAA will use the `End of Time` stage-skip strategy to speed up the process. |
|
||||
|
||||
:::
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ MAAはデフォルトで最新のテーマを選択しますが、`自動ロゲ
|
||||
| ミヅキ | 波瀾万丈·3~7 | 人文主義分隊 / 精神論分隊 | 攻守一体 | ウィシャデル |
|
||||
| サーミ | 自然の猛威·4~10 | 特訓分隊 / 援護戦術分隊 | 攻守一体 | ウィシャデル |
|
||||
| サルカズ | 魂に直面·4~10 | 位置測定分隊 / 援護戦術分隊 | 攻守一体 | ウィシャデル |
|
||||
| 界園 | 請君入園·3~10 | 指揮分隊 / 援護戦術分隊 | 攻守一体 | ウィシャデル |
|
||||
| 界園 | 迎客入園·3~10 | 指揮分隊 / 援護戦術分隊 | 攻守一体 | ウィシャデル |
|
||||
|
||||
難易度の推奨は、`敵の難易度`、`希望消費`、`スコア倍率`などの要素を総合的に考慮しています。高い練度でテストした場合、比較的安定しており、実際の状況やニーズに応じて自由に調整できます。
|
||||
|
||||
@@ -43,7 +43,7 @@ MAAはデフォルトで最新のテーマを選択しますが、`自動ロゲ
|
||||
| ミヅキ | `波瀾万丈·4` およびそれ以上の難易度では、六星オペレーターの召集に必要な希望消費が+1されます。 `精神論分隊` を使用して開始した場合、六星オペレーターを召集できないことがあります。<br>`精神論分隊` はアカウントの練度が高い場合に適しており、運に頼る必要があります。 |
|
||||
| サーミ | `自然の猛威·6` およびそれ以上の難易度では、六星オペレーターの召集に必要な希望消費が+1されます。 `特訓分隊` を使用して開始した場合、六星オペレーターを召集できないことがあります。 |
|
||||
| サルカズ | `魂に直面·15` およびそれ以上の難易度では、六星オペレーターの召集に必要な希望消費が+1されます。 `歴史再編`内でまだ `位置測定分隊強化Ⅱ`を有効にしていない場合、 `位置測定分隊` を使用して開始した場合、六星オペレーターを召集できないことがあります。<br> `位置測定分隊`を選択した場合、回避戦略が採用され、 `魂のしおり`を素早く取得できますが、基本的にエンディングをクリアすることはできません。<br>源石錐を収集戦略を使用した場合、開始時の分隊は `破棘成金分隊` とならば、商店更新戦略を使用してプロセスを加速します。 |
|
||||
| 界園 | `請君入園·15` およびそれ以上の難易度では、六星オペレーターの召集に必要な希望消費が+1されます。 `指揮分隊` を使用して開始した場合、六星オペレーターを召集できないことがあります。<br>難易度が `請君入園·3`に設定され、源石錐を収集戦略を使用して開始時の分隊が `指揮分隊` とならば、 `時の果て` でスキップ戦略を使用してプロセスを加速します。 |
|
||||
| 界園 | `迎客入園·15` およびそれ以上の難易度では、六星オペレーターの召集に必要な希望消費が+1されます。 `指揮分隊` を使用して開始した場合、六星オペレーターを召集できないことがあります。<br>難易度が `迎客入園·3` に設定され、源石錐収集戦略を使用して開始時の分隊が `指揮分隊` ならば、`時の果て` でスキップ戦略を使用してプロセスを加速します。 |
|
||||
|
||||
:::
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ MAA는 기본적으로 가장 최신의 테마를 선택하며, `통합전략` -
|
||||
| 미즈키 | 일렁이는 파도·3~7 | 인적 자원 분대 / 마음가짐 분대 | 차근차근 | 위셔델 |
|
||||
| 사미 | 자연에 도전·4~10 | 특훈 분대 / 원거리 전술 분대 | 차근차근 | 위셔델 |
|
||||
| 살카즈 | 영혼 직면·4~10 | 도면 제작 분대 / 원거리 전술 분대 | 차근차근 | 위셔델 |
|
||||
| 쉐이 | 입장 환영·3~10 | 지휘 분대 / 원거리 전술 분대 | 차근차근 | 위셔델 |
|
||||
| 쉐이 | 계원 초대장·3~10 | 지휘 분대 / 원거리 전술 분대 | 차근차근 | 위셔델 |
|
||||
|
||||
난이도 추천은 `적 난이도`, `희망 소모`, `점수 배율` 등의 요소를 종합적으로 고려하여, 육성이 잘된 계정의 테스트에서 비교적 안정적이므로 실제 상황과 필요에 따라 자유롭게 조정할 수 있습니다.
|
||||
|
||||
@@ -43,7 +43,7 @@ MAA는 기본적으로 가장 최신의 테마를 선택하며, `통합전략` -
|
||||
| 미즈키 | `일렁이는 파도·4` 이상의 난이도에서 6성 오퍼레이터 모집 희망 소모+1이므로 `마음가짐 분대`를 사용하면 시작 시 6성 오퍼레이터를 모집할 수 없을 수 있습니다.<br>`인적 자원 분대`는 계정 육성도가 높은 상황에 적합하고, `마음가짐 분대`는 운에 의존해야 합니다. |
|
||||
| 사미 | `자연에 도전·6` 이상의 난이도에서 6성 오퍼레이터 모집 희망 소모+1이므로 `특훈 분대`를 사용하면 시작 시 6성 오퍼레이터를 모집할 수 없을 수 있습니다. |
|
||||
| 살카즈 | `영혼 직면·15` 이상의 난이도에서 6성 오퍼레이터 모집 희망 소모+1이므로 `역사 재구축`에서 `도면 제작 분대 강화Ⅱ`를 아직 활성화하지 않았다면 `도면 제작 분대` 사용 시 6성 오퍼레이터를 모집할 수 없을 수도 있습니다.<br>`도면 제작 분대`를 선택하면 회피 전략을 채택하여 `영혼의 책갈피`를 빠르게 획득할 수 있지만 기본적으로 엔딩을 클리어할 수 없습니다.<br>각뿔 수집 우선 전략을 사용할 때 시작 분대가 `연금술 분대`라면 상점 새로고침 전략을 사용하여 진행 속도를 높입니다. |
|
||||
| 쉐이 | `입장 환영·15` 이상의 난이도에서 6성 오퍼레이터 모집 희망 소모+1이므로 `지휘 분대`를 사용하면 시작 시 6성 오퍼레이터를 모집할 수 없을 수도 있습니다.<br>난이도가 `입장 환영·3`일 때 각뿔 수집 우선 전략을 사용하고 시작 분대가 `지휘 분대`라면 `시간의 끝` 스킵 전략을 사용하여 진행 속도를 높입니다. |
|
||||
| 쉐이 | `계원 초대장·15` 이상의 난이도에서 6성 오퍼레이터 모집 희망 소모+1이므로 `지휘 분대`를 사용하면 시작 시 6성 오퍼레이터를 모집할 수 없을 수도 있습니다.<br>난이도가 `계원 초대장·3`일 때 각뿔 수집 우선 전략을 사용하고 시작 분대가 `지휘 분대`라면 `시간의 끝` 스킵 전략을 사용하여 진행 속도를 높입니다. |
|
||||
|
||||
:::
|
||||
|
||||
|
||||
@@ -3767,12 +3767,9 @@
|
||||
},
|
||||
"char_4195_radian": {
|
||||
"name": "电弧",
|
||||
"name_en": "电弧",
|
||||
"name_en_unavailable": true,
|
||||
"name_jp": "电弧",
|
||||
"name_jp_unavailable": true,
|
||||
"name_kr": "电弧",
|
||||
"name_kr_unavailable": true,
|
||||
"name_en": "Raidian",
|
||||
"name_jp": "レイディアン",
|
||||
"name_kr": "라이디언",
|
||||
"name_tw": "电弧",
|
||||
"name_tw_unavailable": true,
|
||||
"position": "RANGED",
|
||||
@@ -5418,12 +5415,9 @@
|
||||
},
|
||||
"token_10051_radian_tower1": {
|
||||
"name": "戴乌",
|
||||
"name_en": "戴乌",
|
||||
"name_en_unavailable": true,
|
||||
"name_jp": "戴乌",
|
||||
"name_jp_unavailable": true,
|
||||
"name_kr": "戴乌",
|
||||
"name_kr_unavailable": true,
|
||||
"name_en": "Dive",
|
||||
"name_jp": "ダイウ",
|
||||
"name_kr": "다이브",
|
||||
"name_tw": "戴乌",
|
||||
"name_tw_unavailable": true,
|
||||
"position": "MELEE",
|
||||
@@ -5433,12 +5427,9 @@
|
||||
},
|
||||
"token_10052_radian_tower2": {
|
||||
"name": "赛柯",
|
||||
"name_en": "赛柯",
|
||||
"name_en_unavailable": true,
|
||||
"name_jp": "赛柯",
|
||||
"name_jp_unavailable": true,
|
||||
"name_kr": "赛柯",
|
||||
"name_kr_unavailable": true,
|
||||
"name_en": "Cycle",
|
||||
"name_jp": "サイガ",
|
||||
"name_kr": "사이클",
|
||||
"name_tw": "赛柯",
|
||||
"name_tw_unavailable": true,
|
||||
"position": "MELEE",
|
||||
@@ -5448,12 +5439,9 @@
|
||||
},
|
||||
"token_10053_radian_tower3": {
|
||||
"name": "桑特拉",
|
||||
"name_en": "桑特拉",
|
||||
"name_en_unavailable": true,
|
||||
"name_jp": "桑特拉",
|
||||
"name_jp_unavailable": true,
|
||||
"name_kr": "桑特拉",
|
||||
"name_kr_unavailable": true,
|
||||
"name_en": "Center",
|
||||
"name_jp": "サントラ",
|
||||
"name_kr": "센터",
|
||||
"name_tw": "桑特拉",
|
||||
"name_tw_unavailable": true,
|
||||
"position": "RANGED",
|
||||
@@ -9975,12 +9963,9 @@
|
||||
},
|
||||
"trap_222_rgdysm": {
|
||||
"name": "雕伥",
|
||||
"name_en": "雕伥",
|
||||
"name_en_unavailable": true,
|
||||
"name_jp": "雕伥",
|
||||
"name_jp_unavailable": true,
|
||||
"name_kr": "雕伥",
|
||||
"name_kr_unavailable": true,
|
||||
"name_en": "Statuegeist",
|
||||
"name_jp": "彫鬼",
|
||||
"name_kr": "디오창",
|
||||
"name_tw": "雕伥",
|
||||
"name_tw_unavailable": true,
|
||||
"position": "NONE",
|
||||
@@ -9990,12 +9975,9 @@
|
||||
},
|
||||
"trap_223_dynbox": {
|
||||
"name": "宝葫芦",
|
||||
"name_en": "宝葫芦",
|
||||
"name_en_unavailable": true,
|
||||
"name_jp": "宝葫芦",
|
||||
"name_jp_unavailable": true,
|
||||
"name_kr": "宝葫芦",
|
||||
"name_kr_unavailable": true,
|
||||
"name_en": "Magic Gourd",
|
||||
"name_jp": "お宝ひょうたん",
|
||||
"name_kr": "보물 호리병",
|
||||
"name_tw": "宝葫芦",
|
||||
"name_tw_unavailable": true,
|
||||
"position": "NONE",
|
||||
@@ -10005,12 +9987,9 @@
|
||||
},
|
||||
"trap_224_dyrbox": {
|
||||
"name": "铁葫芦",
|
||||
"name_en": "铁葫芦",
|
||||
"name_en_unavailable": true,
|
||||
"name_jp": "铁葫芦",
|
||||
"name_jp_unavailable": true,
|
||||
"name_kr": "铁葫芦",
|
||||
"name_kr_unavailable": true,
|
||||
"name_en": "Iron Gourd",
|
||||
"name_jp": "鉄のひょうたん",
|
||||
"name_kr": "철제 호리병",
|
||||
"name_tw": "铁葫芦",
|
||||
"name_tw_unavailable": true,
|
||||
"position": "NONE",
|
||||
@@ -10020,12 +9999,9 @@
|
||||
},
|
||||
"trap_225_dysbox": {
|
||||
"name": "怪葫芦",
|
||||
"name_en": "怪葫芦",
|
||||
"name_en_unavailable": true,
|
||||
"name_jp": "怪葫芦",
|
||||
"name_jp_unavailable": true,
|
||||
"name_kr": "怪葫芦",
|
||||
"name_kr_unavailable": true,
|
||||
"name_en": "Strange Gourd",
|
||||
"name_jp": "奇妙なひょうたん",
|
||||
"name_kr": "괴상한 호리병",
|
||||
"name_tw": "怪葫芦",
|
||||
"name_tw_unavailable": true,
|
||||
"position": "NONE",
|
||||
@@ -10035,12 +10011,9 @@
|
||||
},
|
||||
"trap_226_dychss": {
|
||||
"name": "瑕",
|
||||
"name_en": "瑕",
|
||||
"name_en_unavailable": true,
|
||||
"name_en": "Flaw",
|
||||
"name_jp": "瑕",
|
||||
"name_jp_unavailable": true,
|
||||
"name_kr": "瑕",
|
||||
"name_kr_unavailable": true,
|
||||
"name_kr": "흠",
|
||||
"name_tw": "瑕",
|
||||
"name_tw_unavailable": true,
|
||||
"position": "NONE",
|
||||
@@ -10171,12 +10144,9 @@
|
||||
},
|
||||
"trap_238_dydfst": {
|
||||
"name": "明烛台",
|
||||
"name_en": "明烛台",
|
||||
"name_en_unavailable": true,
|
||||
"name_jp": "明烛台",
|
||||
"name_jp_unavailable": true,
|
||||
"name_kr": "明烛台",
|
||||
"name_kr_unavailable": true,
|
||||
"name_en": "Candle Stand",
|
||||
"name_jp": "明燭台",
|
||||
"name_kr": "명촉대",
|
||||
"name_tw": "明烛台",
|
||||
"name_tw_unavailable": true,
|
||||
"position": "NONE",
|
||||
@@ -10186,12 +10156,9 @@
|
||||
},
|
||||
"trap_239_dyffgd": {
|
||||
"name": "狭路相逢",
|
||||
"name_en": "狭路相逢",
|
||||
"name_en_unavailable": true,
|
||||
"name_jp": "狭路相逢",
|
||||
"name_jp_unavailable": true,
|
||||
"name_kr": "狭路相逢",
|
||||
"name_kr_unavailable": true,
|
||||
"name_en": "Face to Face",
|
||||
"name_jp": "隘路の衝突",
|
||||
"name_kr": "외나무다리",
|
||||
"name_tw": "狭路相逢",
|
||||
"name_tw_unavailable": true,
|
||||
"position": "NONE",
|
||||
@@ -10201,12 +10168,9 @@
|
||||
},
|
||||
"trap_240_dyffdd": {
|
||||
"name": "狭路相逢",
|
||||
"name_en": "狭路相逢",
|
||||
"name_en_unavailable": true,
|
||||
"name_jp": "狭路相逢",
|
||||
"name_jp_unavailable": true,
|
||||
"name_kr": "狭路相逢",
|
||||
"name_kr_unavailable": true,
|
||||
"name_en": "Face to Face",
|
||||
"name_jp": "隘路の衝突",
|
||||
"name_kr": "외나무다리",
|
||||
"name_tw": "狭路相逢",
|
||||
"name_tw_unavailable": true,
|
||||
"position": "NONE",
|
||||
@@ -10216,12 +10180,9 @@
|
||||
},
|
||||
"trap_241_dyldlz": {
|
||||
"name": "聚宝斋",
|
||||
"name_en": "聚宝斋",
|
||||
"name_en_unavailable": true,
|
||||
"name_jp": "聚宝斋",
|
||||
"name_jp_unavailable": true,
|
||||
"name_kr": "聚宝斋",
|
||||
"name_kr_unavailable": true,
|
||||
"name_en": "Chamber of Treasures",
|
||||
"name_jp": "聚宝斎",
|
||||
"name_kr": "취보재",
|
||||
"name_tw": "聚宝斋",
|
||||
"name_tw_unavailable": true,
|
||||
"position": "NONE",
|
||||
@@ -10281,12 +10242,9 @@
|
||||
},
|
||||
"trap_251_buftrp": {
|
||||
"name": "遗物中枢",
|
||||
"name_en": "遗物中枢",
|
||||
"name_en_unavailable": true,
|
||||
"name_jp": "遗物中枢",
|
||||
"name_jp_unavailable": true,
|
||||
"name_kr": "遗物中枢",
|
||||
"name_kr_unavailable": true,
|
||||
"name_en": "Artifact Center",
|
||||
"name_jp": "遺物中枢",
|
||||
"name_kr": "유물 중추",
|
||||
"name_tw": "遗物中枢",
|
||||
"name_tw_unavailable": true,
|
||||
"position": "NONE",
|
||||
@@ -12678,8 +12636,7 @@
|
||||
"name_en": "Nightwalker's Gear",
|
||||
"name_jp": "天工夜行セット",
|
||||
"name_kr": "천공 야행 세트",
|
||||
"name_tw": "天工夜行套装",
|
||||
"name_tw_unavailable": true,
|
||||
"name_tw": "天工夜行套裝",
|
||||
"position": "NONE",
|
||||
"profession": "TRAP",
|
||||
"rangeId": ["0-1", "0-1", "0-1"],
|
||||
@@ -12690,8 +12647,7 @@
|
||||
"name_en": "Nightwalker's Cloak Module",
|
||||
"name_jp": "夜行笠モジュール",
|
||||
"name_kr": "야행 망토 모듈",
|
||||
"name_tw": "夜行斗篷模块",
|
||||
"name_tw_unavailable": true,
|
||||
"name_tw": "夜行斗篷模組",
|
||||
"position": "NONE",
|
||||
"profession": "TRAP",
|
||||
"rangeId": ["0-1", "0-1", "0-1"],
|
||||
@@ -12702,8 +12658,7 @@
|
||||
"name_en": "Nightwalker's Hook Module",
|
||||
"name_jp": "夜行鉤爪モジュール",
|
||||
"name_kr": "야행 갈고리 모듈",
|
||||
"name_tw": "夜行钩爪模块",
|
||||
"name_tw_unavailable": true,
|
||||
"name_tw": "夜行鉤爪模組",
|
||||
"position": "NONE",
|
||||
"profession": "TRAP",
|
||||
"rangeId": ["0-1", "0-1", "0-1"],
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
{
|
||||
"configName": "General",
|
||||
"devices": "[Adb] devices",
|
||||
"addressRegex": "(.+)\tdevice",
|
||||
"addressRegex": "([^\\n]+)\tdevice",
|
||||
"connect": "[Adb] connect [AdbSerial]",
|
||||
"uuid": "[Adb] -s [AdbSerial] shell settings get secure android_id",
|
||||
"version": "[Adb] -s [AdbSerial] shell getprop ro.build.version.release",
|
||||
|
||||
522
resource/copilot/SSS_任务专用_8次术师招募_施佩尔山脚_冷爆机.json
Normal file
@@ -0,0 +1,522 @@
|
||||
{
|
||||
"minimum_required": "v5.23.0",
|
||||
"stage_name": "施佩尔山脚",
|
||||
"actions": [],
|
||||
"doc": {
|
||||
"title": "保全派驻_任务专用_8次术师招募_施佩尔山脚_冷爆机",
|
||||
"details": "本作业是用来刷8次招募术师任务的,需要设置循环次数,MAA会打完第一关抓干员后直接漏怪重开\n═══════════════════════════════════\n作业代码:maa://77859\n目前只能手动编队,所有工具人请尽量选择费用低的干员,练度最好精二,最低精一满级\n所有工具人技能不要选只能开一次的技能(类似山2技能那种)和接敌才能放的技能(类似锏3技能那种),否则MAA会一直放技能,也不要选攻击范围太奇怪的(类似黑3技能那种)\n请在确认导能原件选择【冷爆机】、战术装备全选A、手动编队并阵容确认后,再点击开始\n作业作者:萨拉托加\nJSON作者:萨拉托加\n作业视频:【MAA保全派驻 任务合集】 https://www.bilibili.com/video/BV1RbqnBCEfd/?share_source=copy_web&vd_source=3fd5040fe25f6a00e19e6072bcccfa4e\n═══════════════════════════════════\n不包括核心选择的额外干员:\n先锋3(选有不需要接敌就能回费的技能,不要选接敌回费的,也不要选档一的先锋,容易漏怪,最好选尖兵,不建议用银灰,MAA会频繁识别召唤物)\n重装5(优先选自回血的奶盾,例如塞雷娅黍临光,和其他费用在20费左右的重装,例如星熊余年)\n狙击5(尽量选低费速狙)\n术士5(尽量选20费左右的术士,如果选群法要带减费模组,推荐带技能群攻的干员,例如小羊3澄闪3拉狗3,凑天有四时带夕)\n辅助2(可以选魔王2遥2酒神3塑心3,凑天有四时带令)\n═══════════════════════════════════\n有问题反馈进群216314927,评论区反馈不一定能及时回复\n部分核心可根据自己需求修改作业文件替换,但不可发上作业站,用此作业默认同意",
|
||||
"title_color": "dark",
|
||||
"details_color": "dark"
|
||||
},
|
||||
"groups": [],
|
||||
"opers": [],
|
||||
"type": "SSS",
|
||||
"buff": "冷爆机",
|
||||
"equipment": [
|
||||
"A",
|
||||
"A",
|
||||
"A",
|
||||
"A",
|
||||
"A",
|
||||
"A",
|
||||
"A",
|
||||
"A"
|
||||
],
|
||||
"strategy": "优选策略",
|
||||
"tool_men": {
|
||||
"vanguard": 3,
|
||||
"guard": 0,
|
||||
"defender": 5,
|
||||
"sniper": 5,
|
||||
"caster": 5,
|
||||
"medic": 0,
|
||||
"supporter": 2,
|
||||
"specialist": 0
|
||||
},
|
||||
"drops": [
|
||||
"术师",
|
||||
"辅助",
|
||||
"无需增调干员",
|
||||
"重装",
|
||||
"冰浪脉冲模块"
|
||||
],
|
||||
"blacklist": [
|
||||
"CONFESS-47",
|
||||
"PhonoR-0",
|
||||
"Friston-3",
|
||||
"U-Official",
|
||||
"泰拉大陆调查团",
|
||||
"正义骑士号",
|
||||
"THRM-EX",
|
||||
"斑点",
|
||||
"泡普卡",
|
||||
"月见夜",
|
||||
"空爆",
|
||||
"梓兰",
|
||||
"安赛尔",
|
||||
"芙蓉",
|
||||
"安德切尔",
|
||||
"克洛丝",
|
||||
"米格鲁",
|
||||
"卡缇",
|
||||
"玫兰莎",
|
||||
"翎羽",
|
||||
"香草",
|
||||
"芬",
|
||||
"巡林者",
|
||||
"黑角",
|
||||
"夜刀",
|
||||
"Castle-3",
|
||||
"Lancet-2",
|
||||
"历阵锐枪芬",
|
||||
"野鬃",
|
||||
"风笛",
|
||||
"苇草",
|
||||
"格拉尼",
|
||||
"红豆",
|
||||
"渡桥",
|
||||
"缪尔赛思",
|
||||
"伺夜",
|
||||
"夜半",
|
||||
"豆苗",
|
||||
"万顷",
|
||||
"琴柳",
|
||||
"极境",
|
||||
"桃金娘",
|
||||
"寻澜",
|
||||
"齐尔查克",
|
||||
"伊内丝",
|
||||
"谜图",
|
||||
"晓歌",
|
||||
"山",
|
||||
"达格达",
|
||||
"重岳",
|
||||
"杰克",
|
||||
"燧石",
|
||||
"猎蜂",
|
||||
"因陀罗",
|
||||
"维娜·维多利亚",
|
||||
"薇薇安娜",
|
||||
"史尔特尔",
|
||||
"阿米娅",
|
||||
"铸铁",
|
||||
"星极",
|
||||
"慕斯",
|
||||
"左乐",
|
||||
"火龙S黑角",
|
||||
"赤冬",
|
||||
"宴",
|
||||
"赫拉格",
|
||||
"莱欧斯",
|
||||
"止颂",
|
||||
"摩根",
|
||||
"耀骑士临光",
|
||||
"断罪者",
|
||||
"炎客",
|
||||
"斯卡蒂",
|
||||
"芙兰卡",
|
||||
"缠丸",
|
||||
"司霆惊蛰",
|
||||
"骋风",
|
||||
"玛恩纳",
|
||||
"龙舌兰",
|
||||
"露托",
|
||||
"斥罪",
|
||||
"泥岩",
|
||||
"火神",
|
||||
"坚雷",
|
||||
"石棉",
|
||||
"暮落",
|
||||
"车尔尼",
|
||||
"森蚺",
|
||||
"极光",
|
||||
"洋灰",
|
||||
"灰毫",
|
||||
"号角",
|
||||
"火哨",
|
||||
"菲莱",
|
||||
"余",
|
||||
"普罗旺斯",
|
||||
"黑",
|
||||
"酸糖",
|
||||
"鸿雪",
|
||||
"玫拉",
|
||||
"白雪",
|
||||
"陨星",
|
||||
"慑砂",
|
||||
"W",
|
||||
"菲亚梅塔",
|
||||
"截云",
|
||||
"守林人",
|
||||
"安比尔",
|
||||
"安哲拉",
|
||||
"远牙",
|
||||
"子月",
|
||||
"送葬人",
|
||||
"奥斯塔",
|
||||
"松果",
|
||||
"假日威龙陈",
|
||||
"吉星",
|
||||
"早露",
|
||||
"熔泉",
|
||||
"埃拉托",
|
||||
"铅踝",
|
||||
"提丰",
|
||||
"迷迭香",
|
||||
"承曦格雷伊",
|
||||
"冰酿",
|
||||
"莱伊",
|
||||
"跃跃",
|
||||
"娜仁图亚",
|
||||
"水灯心",
|
||||
"凯尔希",
|
||||
"刺玫",
|
||||
"焰影苇草",
|
||||
"濯尘芙蓉",
|
||||
"罗比菈塔",
|
||||
"掠风",
|
||||
"白铁",
|
||||
"凯瑟琳",
|
||||
"阿兰娜",
|
||||
"砾",
|
||||
"红",
|
||||
"槐琥",
|
||||
"傀影",
|
||||
"卡夫卡",
|
||||
"缄默德克萨斯",
|
||||
"麒麟R夜刀",
|
||||
"弑君者",
|
||||
"阿消",
|
||||
"食铁兽",
|
||||
"温蒂",
|
||||
"见行者",
|
||||
"暗索",
|
||||
"崖心",
|
||||
"雪雉",
|
||||
"歌蕾蒂娅",
|
||||
"杏仁",
|
||||
"阿",
|
||||
"空构",
|
||||
"新约能天使",
|
||||
"孑",
|
||||
"乌有",
|
||||
"老鲤",
|
||||
"琳琅诗怀雅",
|
||||
"裁度",
|
||||
"罗宾",
|
||||
"霜华",
|
||||
"多萝西",
|
||||
"艾拉",
|
||||
"钼铅",
|
||||
"贝娜",
|
||||
"风丸",
|
||||
"归溟幽灵鲨",
|
||||
"维荻",
|
||||
"双月",
|
||||
"锡人",
|
||||
"引星棘刺",
|
||||
"云迹",
|
||||
"蒂比",
|
||||
"狮蝎",
|
||||
"伊桑",
|
||||
"绮良",
|
||||
"水月",
|
||||
"阿斯卡纶",
|
||||
"八幡海铃",
|
||||
"若叶睦",
|
||||
"冬时",
|
||||
"折桠",
|
||||
"哈蒂娅",
|
||||
"雪猎",
|
||||
"凛御银灰",
|
||||
"娜斯提",
|
||||
"响石",
|
||||
"天空盒"
|
||||
],
|
||||
"stages": [
|
||||
{
|
||||
"stage_name": "运道抢险",
|
||||
"strategies": [
|
||||
{
|
||||
"tool_men": {
|
||||
"vanguard": 1
|
||||
},
|
||||
"location": [
|
||||
8,
|
||||
5
|
||||
],
|
||||
"direction": "none"
|
||||
},
|
||||
{
|
||||
"tool_men": {
|
||||
"sniper": 1,
|
||||
"vanguard": 1
|
||||
},
|
||||
"location": [
|
||||
8,
|
||||
5
|
||||
],
|
||||
"direction": "none"
|
||||
},
|
||||
{
|
||||
"tool_men": {
|
||||
"vanguard": 1
|
||||
},
|
||||
"location": [
|
||||
7,
|
||||
5
|
||||
],
|
||||
"direction": "Left"
|
||||
},
|
||||
{
|
||||
"tool_men": {
|
||||
"sniper": 1
|
||||
},
|
||||
"location": [
|
||||
4,
|
||||
4
|
||||
],
|
||||
"direction": "Left"
|
||||
},
|
||||
{
|
||||
"core": "冷爆机",
|
||||
"tool_men": {},
|
||||
"location": [
|
||||
6,
|
||||
5
|
||||
],
|
||||
"direction": "Left"
|
||||
},
|
||||
{
|
||||
"tool_men": {
|
||||
"defender": 1
|
||||
},
|
||||
"location": [
|
||||
5,
|
||||
5
|
||||
],
|
||||
"direction": "Left"
|
||||
},
|
||||
{
|
||||
"core": "冷爆机",
|
||||
"tool_men": {},
|
||||
"location": [
|
||||
6,
|
||||
5
|
||||
],
|
||||
"direction": "Left"
|
||||
},
|
||||
{
|
||||
"tool_men": {
|
||||
"supporter": 1
|
||||
},
|
||||
"location": [
|
||||
5,
|
||||
4
|
||||
],
|
||||
"direction": "Left"
|
||||
},
|
||||
{
|
||||
"core": "冷爆机",
|
||||
"tool_men": {},
|
||||
"location": [
|
||||
6,
|
||||
5
|
||||
],
|
||||
"direction": "Left"
|
||||
},
|
||||
{
|
||||
"tool_men": {
|
||||
"vanguard": 1
|
||||
},
|
||||
"location": [
|
||||
7,
|
||||
5
|
||||
],
|
||||
"direction": "Left"
|
||||
},
|
||||
{
|
||||
"tool_men": {
|
||||
"caster": 1
|
||||
},
|
||||
"location": [
|
||||
4,
|
||||
4
|
||||
],
|
||||
"direction": "Left"
|
||||
},
|
||||
{
|
||||
"tool_men": {
|
||||
"defender": 1
|
||||
},
|
||||
"location": [
|
||||
5,
|
||||
5
|
||||
],
|
||||
"direction": "Left"
|
||||
},
|
||||
{
|
||||
"tool_men": {
|
||||
"supporter": 1
|
||||
},
|
||||
"location": [
|
||||
4,
|
||||
4
|
||||
],
|
||||
"direction": "Left"
|
||||
},
|
||||
{
|
||||
"tool_men": {
|
||||
"sniper": 1,
|
||||
"caster": 1
|
||||
},
|
||||
"location": [
|
||||
5,
|
||||
4
|
||||
],
|
||||
"direction": "Left"
|
||||
},
|
||||
{
|
||||
"tool_men": {
|
||||
"sniper": 1,
|
||||
"caster": 1
|
||||
},
|
||||
"location": [
|
||||
5,
|
||||
4
|
||||
],
|
||||
"direction": "Left"
|
||||
},
|
||||
{
|
||||
"tool_men": {
|
||||
"vanguard": 99
|
||||
},
|
||||
"location": [
|
||||
7,
|
||||
5
|
||||
],
|
||||
"direction": "Left"
|
||||
},
|
||||
{
|
||||
"tool_men": {
|
||||
"defender": 99
|
||||
},
|
||||
"location": [
|
||||
5,
|
||||
5
|
||||
],
|
||||
"direction": "Left"
|
||||
},
|
||||
{
|
||||
"tool_men": {
|
||||
"supporter": 99
|
||||
},
|
||||
"location": [
|
||||
4,
|
||||
4
|
||||
],
|
||||
"direction": "Left"
|
||||
},
|
||||
{
|
||||
"tool_men": {
|
||||
"caster": 99
|
||||
},
|
||||
"location": [
|
||||
5,
|
||||
4
|
||||
],
|
||||
"direction": "Left"
|
||||
},
|
||||
{
|
||||
"core": "战备激活阀",
|
||||
"tool_men": {
|
||||
"sniper": 99
|
||||
},
|
||||
"location": [
|
||||
5,
|
||||
4
|
||||
],
|
||||
"direction": "Left"
|
||||
}
|
||||
],
|
||||
"draw_as_possible": true,
|
||||
"actions": [
|
||||
{
|
||||
"type": "二倍速"
|
||||
},
|
||||
{
|
||||
"type": "Deploy",
|
||||
"name": "超重绝缘水泥",
|
||||
"location": [
|
||||
6,
|
||||
1
|
||||
],
|
||||
"direction": "none",
|
||||
"costs": 48
|
||||
},
|
||||
{
|
||||
"type": "Deploy",
|
||||
"name": "超重绝缘水泥",
|
||||
"location": [
|
||||
7,
|
||||
1
|
||||
],
|
||||
"direction": "none",
|
||||
"costs": 49
|
||||
},
|
||||
{
|
||||
"type": "Deploy",
|
||||
"name": "超重绝缘水泥",
|
||||
"location": [
|
||||
8,
|
||||
1
|
||||
],
|
||||
"direction": "none",
|
||||
"costs": 50
|
||||
}
|
||||
],
|
||||
"retry_times": 99
|
||||
},
|
||||
{
|
||||
"stage_name": "作业整备",
|
||||
"strategies": [],
|
||||
"draw_as_possible": true,
|
||||
"actions": [
|
||||
{
|
||||
"type": "二倍速"
|
||||
},
|
||||
{
|
||||
"type": "Deploy",
|
||||
"name": "超重绝缘水泥",
|
||||
"location": [
|
||||
1,
|
||||
1
|
||||
],
|
||||
"direction": "none",
|
||||
"costs": 48
|
||||
},
|
||||
{
|
||||
"type": "Deploy",
|
||||
"name": "超重绝缘水泥",
|
||||
"location": [
|
||||
2,
|
||||
1
|
||||
],
|
||||
"direction": "none",
|
||||
"costs": 49
|
||||
},
|
||||
{
|
||||
"type": "Deploy",
|
||||
"name": "超重绝缘水泥",
|
||||
"location": [
|
||||
3,
|
||||
1
|
||||
],
|
||||
"direction": "none",
|
||||
"costs": 50
|
||||
}
|
||||
],
|
||||
"retry_times": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
1814
resource/copilot/SSS_任务专用_施佩尔山脚_荒芜拉普兰德+圣聆初雪+浊心斯卡蒂_能量扰动放大器.json
Normal file
1842
resource/copilot/SSS_施佩尔山脚_逻各斯+圣聆初雪+浊心斯卡蒂_冷爆机.json
Normal file
1416
resource/copilot/SSS_雷神工业测试平台_逻各斯+遥_便携式医疗设备.json
Normal file
@@ -28,7 +28,7 @@
|
||||
"tool_men": {
|
||||
"vanguard": 3,
|
||||
"guard": 0,
|
||||
"defender": 7,
|
||||
"defender": 6,
|
||||
"sniper": 0,
|
||||
"caster": 9,
|
||||
"medic": 0,
|
||||
@@ -1,300 +1,442 @@
|
||||
{
|
||||
"author": "一只摆烂的42",
|
||||
"description": "长期搓玉333排班协议",
|
||||
"id": 1765973591631819,
|
||||
"title": "333长期搓玉,需要自行将黍进驻专精室协助位。推荐换班时间8-8-8,极限效率12-12-8.5,非8小时换班需要取消使用菲亚梅塔(plans.[0/1/2].Fiammetta.enable = false),并自行每8小时手动使用菲亚梅塔007但书龙舌兰巫恋。修订时间2025-12-17,具体干员配置参考公孙长乐大佬最新视频的333搓玉高级版。对干员要求极高,若缺少干员请自行拷贝文件并修改(请勿直接修改,以免更新后被覆盖)",
|
||||
"planTimes": "3班",
|
||||
"plans": [
|
||||
{
|
||||
"rooms": {
|
||||
"trading": [
|
||||
{
|
||||
"product": "LMD",
|
||||
"operators": ["巫恋", "卡夫卡", "龙舌兰"],
|
||||
"sort": false
|
||||
},
|
||||
{
|
||||
"product": "LMD",
|
||||
"operators": ["乌有", "黑键", "但书"],
|
||||
"sort": false
|
||||
},
|
||||
{
|
||||
"product": "Orundum",
|
||||
"operators": ["德克萨斯", "拉普兰德", "能天使"],
|
||||
"sort": false
|
||||
}
|
||||
],
|
||||
"manufacture": [
|
||||
{
|
||||
"product": "Pure Gold",
|
||||
"operators": ["清流", "温蒂", "森蚺"],
|
||||
"sort": false
|
||||
},
|
||||
{
|
||||
"product": "Pure Gold",
|
||||
"operators": ["阿罗玛", "槐琥", "迷迭香"],
|
||||
"sort": false
|
||||
},
|
||||
{
|
||||
"product": "Originium Shard",
|
||||
"operators": ["泡泡", "火神", "褐果"],
|
||||
"sort": false
|
||||
}
|
||||
],
|
||||
"hire": [
|
||||
{
|
||||
"operators": ["絮雨"]
|
||||
}
|
||||
],
|
||||
"dormitory": [
|
||||
{
|
||||
"operators": ["爱丽丝"],
|
||||
"autofill": true
|
||||
},
|
||||
{
|
||||
"operators": ["车尔尼"],
|
||||
"autofill": true
|
||||
},
|
||||
{
|
||||
"operators": ["塑心"],
|
||||
"autofill": true
|
||||
},
|
||||
{
|
||||
"autofill": true
|
||||
}
|
||||
],
|
||||
"control": [
|
||||
{
|
||||
"operators": ["阿米娅", "重岳", "令", "夕", "琴柳"]
|
||||
}
|
||||
],
|
||||
"power": [
|
||||
{
|
||||
"operators": ["承曦格雷伊"]
|
||||
},
|
||||
{
|
||||
"autofill": true
|
||||
},
|
||||
{
|
||||
"autofill": true
|
||||
}
|
||||
],
|
||||
"meeting": [
|
||||
{
|
||||
"autofill": true
|
||||
}
|
||||
],
|
||||
"processing": [
|
||||
{
|
||||
"skip": false,
|
||||
"operators": ["年"]
|
||||
}
|
||||
]
|
||||
},
|
||||
"name": "A 组 12 H",
|
||||
"description": "1组",
|
||||
"description_post": "下次换班请在约12小时后进行",
|
||||
"Fiammetta": {
|
||||
"enable": true,
|
||||
"target": "但书",
|
||||
"order": "pre"
|
||||
},
|
||||
"drones": {
|
||||
"enable": true,
|
||||
"index": "1",
|
||||
"room": "trading",
|
||||
"index": "1",
|
||||
"enable": true,
|
||||
"order": "pre"
|
||||
},
|
||||
"name": "A 组 12 H",
|
||||
"description": "1组",
|
||||
"description_post": "下次换班请在约12小时后进行"
|
||||
},
|
||||
{
|
||||
"rooms": {
|
||||
"trading": [
|
||||
{
|
||||
"skip": false,
|
||||
"product": "LMD",
|
||||
"operators": ["巫恋", "卡夫卡", "龙舌兰"],
|
||||
"sort": false
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"product": "LMD",
|
||||
"operators": ["推进之王", "摩根", "但书"],
|
||||
"sort": false
|
||||
"operators": ["乌有", "黑键", "但书"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"product": "Orundum",
|
||||
"operators": ["孑", "琳琅诗怀雅", "银灰"],
|
||||
"sort": false
|
||||
"operators": ["德克萨斯", "拉普兰德", "能天使"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
}
|
||||
],
|
||||
"manufacture": [
|
||||
{
|
||||
"skip": false,
|
||||
"product": "Pure Gold",
|
||||
"operators": ["清流", "温蒂", "森蚺"],
|
||||
"sort": false
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"product": "Pure Gold",
|
||||
"operators": ["苍苔", "砾", "引星棘刺"],
|
||||
"sort": false
|
||||
"operators": ["阿罗玛", "槐琥", "迷迭香"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"product": "Originium Shard",
|
||||
"operators": ["泡泡", "火神", "褐果"],
|
||||
"sort": false
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
}
|
||||
],
|
||||
"hire": [
|
||||
"power": [
|
||||
{
|
||||
"operators": ["斥罪"]
|
||||
"skip": false,
|
||||
"operators": ["承曦格雷伊"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"operators": [],
|
||||
"sort": false,
|
||||
"autofill": true
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"operators": [],
|
||||
"sort": false,
|
||||
"autofill": true
|
||||
}
|
||||
],
|
||||
"dormitory": [
|
||||
{
|
||||
"skip": false,
|
||||
"operators": ["爱丽丝", "车尔尼", "塑心"],
|
||||
"sort": false,
|
||||
"autofill": true
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"operators": [],
|
||||
"sort": false,
|
||||
"autofill": true
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"operators": [],
|
||||
"sort": false,
|
||||
"autofill": true
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"operators": [],
|
||||
"sort": false,
|
||||
"autofill": true
|
||||
}
|
||||
],
|
||||
"control": [
|
||||
{
|
||||
"operators": ["阿米娅", "灵知", "戴菲恩", "薇薇安娜", "Mon3tr"]
|
||||
}
|
||||
],
|
||||
"power": [
|
||||
{
|
||||
"operators": ["承曦格雷伊"]
|
||||
},
|
||||
{
|
||||
"autofill": true
|
||||
},
|
||||
{
|
||||
"autofill": true
|
||||
"skip": false,
|
||||
"operators": ["阿米娅", "重岳", "令", "夕", "琴柳"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
}
|
||||
],
|
||||
"meeting": [
|
||||
{
|
||||
"skip": false,
|
||||
"operators": [],
|
||||
"sort": false,
|
||||
"autofill": true
|
||||
}
|
||||
],
|
||||
"hire": [
|
||||
{
|
||||
"skip": false,
|
||||
"operators": ["絮雨"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
}
|
||||
],
|
||||
"processing": [
|
||||
{
|
||||
"skip": false,
|
||||
"operators": ["年"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
}
|
||||
]
|
||||
},
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "B 组 12H",
|
||||
"description": "2组",
|
||||
"description_post": "下次换班请在约12小时后进行",
|
||||
"Fiammetta": {
|
||||
"enable": true,
|
||||
"target": "龙舌兰",
|
||||
"order": "pre"
|
||||
},
|
||||
"drones": {
|
||||
"enable": true,
|
||||
"index": "1",
|
||||
"room": "trading",
|
||||
"index": "1",
|
||||
"enable": true,
|
||||
"order": "pre"
|
||||
},
|
||||
"name": "B 组 12H",
|
||||
"description": "2组",
|
||||
"description_post": "下次换班请在约12小时后进行"
|
||||
},
|
||||
{
|
||||
"rooms": {
|
||||
"trading": [
|
||||
{
|
||||
"skip": false,
|
||||
"product": "LMD",
|
||||
"operators": ["巫恋", "柏喙", "龙舌兰"],
|
||||
"sort": false
|
||||
"operators": ["巫恋", "卡夫卡", "龙舌兰"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"product": "LMD",
|
||||
"operators": ["乌有", "黑键", "但书"],
|
||||
"sort": false
|
||||
"operators": ["推进之王", "摩根", "但书"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"product": "Orundum",
|
||||
"operators": ["德克萨斯", "拉普兰德", "能天使"],
|
||||
"sort": false
|
||||
"operators": ["孑", "琳琅诗怀雅", "银灰"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
}
|
||||
],
|
||||
"manufacture": [
|
||||
{
|
||||
"skip": false,
|
||||
"product": "Pure Gold",
|
||||
"operators": ["阿罗玛", "槐琥", "迷迭香"],
|
||||
"sort": false
|
||||
"operators": ["清流", "温蒂", "森蚺"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"product": "Pure Gold",
|
||||
"operators": ["苍苔", "引星棘刺", "至简"],
|
||||
"sort": false
|
||||
"operators": ["苍苔", "砾", "引星棘刺"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"product": "Originium Shard",
|
||||
"operators": ["艾雅法拉", "地灵", "炎熔"],
|
||||
"sort": false
|
||||
"operators": ["泡泡", "火神", "褐果"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
}
|
||||
],
|
||||
"hire": [
|
||||
"power": [
|
||||
{
|
||||
"operators": ["絮雨"]
|
||||
"skip": false,
|
||||
"operators": ["承曦格雷伊"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"operators": [],
|
||||
"sort": false,
|
||||
"autofill": true
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"operators": [],
|
||||
"sort": false,
|
||||
"autofill": true
|
||||
}
|
||||
],
|
||||
"dormitory": [
|
||||
{
|
||||
"operators": ["爱丽丝"]
|
||||
"skip": false,
|
||||
"operators": [],
|
||||
"sort": false,
|
||||
"autofill": true
|
||||
},
|
||||
{
|
||||
"operators": ["车尔尼"]
|
||||
"skip": false,
|
||||
"operators": [],
|
||||
"sort": false,
|
||||
"autofill": true
|
||||
},
|
||||
{
|
||||
"operators": ["塑心"]
|
||||
"skip": false,
|
||||
"operators": [],
|
||||
"sort": false,
|
||||
"autofill": true
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"operators": [],
|
||||
"sort": false,
|
||||
"autofill": true
|
||||
}
|
||||
],
|
||||
"control": [
|
||||
{
|
||||
"operators": ["诗怀雅", "重岳", "令", "夕", "琴柳"]
|
||||
}
|
||||
],
|
||||
"power": [
|
||||
{
|
||||
"autofill": true
|
||||
},
|
||||
{
|
||||
"autofill": true
|
||||
},
|
||||
{
|
||||
"autofill": true
|
||||
"skip": false,
|
||||
"operators": ["阿米娅", "灵知", "戴菲恩", "八幡海铃", "斩业星熊"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
}
|
||||
],
|
||||
"meeting": [
|
||||
{
|
||||
"skip": false,
|
||||
"operators": [],
|
||||
"sort": false,
|
||||
"autofill": true
|
||||
}
|
||||
],
|
||||
"hire": [
|
||||
{
|
||||
"skip": false,
|
||||
"operators": ["斥罪"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
}
|
||||
],
|
||||
"processing": [
|
||||
{
|
||||
"skip": false,
|
||||
"operators": ["年"]
|
||||
"operators": [],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
}
|
||||
]
|
||||
},
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "C 组 8.5H",
|
||||
"description": "3组",
|
||||
"description_post": "下次换班请在约8.5小时后进行",
|
||||
"Fiammetta": {
|
||||
"enable": true,
|
||||
"target": "巫恋",
|
||||
"order": "pre"
|
||||
},
|
||||
"drones": {
|
||||
"enable": true,
|
||||
"index": 1,
|
||||
"room": "trading",
|
||||
"index": 1,
|
||||
"enable": true,
|
||||
"order": "pre"
|
||||
},
|
||||
"name": "C 组 8.5H",
|
||||
"description": "3组",
|
||||
"description_post": "下次换班请在约8.5小时后进行"
|
||||
"rooms": {
|
||||
"trading": [
|
||||
{
|
||||
"skip": false,
|
||||
"product": "LMD",
|
||||
"operators": ["巫恋", "柏喙", "龙舌兰"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"product": "LMD",
|
||||
"operators": ["乌有", "黑键", "但书"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"product": "Orundum",
|
||||
"operators": ["德克萨斯", "拉普兰德", "能天使"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
}
|
||||
],
|
||||
"manufacture": [
|
||||
{
|
||||
"skip": false,
|
||||
"product": "Pure Gold",
|
||||
"operators": ["阿罗玛", "槐琥", "迷迭香"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"product": "Pure Gold",
|
||||
"operators": ["苍苔", "引星棘刺", "砾"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"product": "Originium Shard",
|
||||
"operators": ["艾雅法拉", "地灵", "炎熔"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
}
|
||||
],
|
||||
"power": [
|
||||
{
|
||||
"skip": false,
|
||||
"operators": [],
|
||||
"sort": false,
|
||||
"autofill": true
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"operators": [],
|
||||
"sort": false,
|
||||
"autofill": true
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"operators": [],
|
||||
"sort": false,
|
||||
"autofill": true
|
||||
}
|
||||
],
|
||||
"dormitory": [
|
||||
{
|
||||
"skip": false,
|
||||
"operators": ["爱丽丝", "车尔尼", "塑心"],
|
||||
"sort": true,
|
||||
"autofill": true
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"operators": [],
|
||||
"sort": false,
|
||||
"autofill": true
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"operators": [],
|
||||
"sort": false,
|
||||
"autofill": true
|
||||
},
|
||||
{
|
||||
"skip": false,
|
||||
"operators": [],
|
||||
"sort": false,
|
||||
"autofill": true
|
||||
}
|
||||
],
|
||||
"control": [
|
||||
{
|
||||
"skip": false,
|
||||
"operators": ["诗怀雅", "重岳", "令", "夕", "琴柳"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
}
|
||||
],
|
||||
"meeting": [
|
||||
{
|
||||
"skip": false,
|
||||
"operators": [],
|
||||
"sort": false,
|
||||
"autofill": true
|
||||
}
|
||||
],
|
||||
"hire": [
|
||||
{
|
||||
"skip": false,
|
||||
"operators": ["絮雨"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
}
|
||||
],
|
||||
"processing": [
|
||||
{
|
||||
"skip": false,
|
||||
"operators": ["年"],
|
||||
"sort": false,
|
||||
"autofill": false
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"author": "E022-23093",
|
||||
"description": "长期搓玉333排班协议",
|
||||
"id": 1746693957830860,
|
||||
"title": "333长期搓玉,具体干员配置参考公孙长乐大佬最新视频的333搓玉高级版,使用换班时间为12-12-8.5组,对干员要求极高\n若缺少干员请自行拷贝文件并修改(请勿直接修改,以免更新后被覆盖)",
|
||||
"buildingType": "333"
|
||||
"scheduleType": {
|
||||
"planTimes": 3,
|
||||
"trading": 3,
|
||||
"manufacture": 3,
|
||||
"power": 3,
|
||||
"dormitory": 4
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2063,6 +2063,14 @@
|
||||
"sortId": -10000,
|
||||
"usage": "Used to perform Data Iteration on Limiter Units."
|
||||
},
|
||||
"act5collection_point_token": {
|
||||
"classifyType": "NONE",
|
||||
"description": "Rhodes Island issues special redemption points as an incentive to field operators. These points can be used to redeem important supplies.",
|
||||
"icon": "act5collection_point_token.png",
|
||||
"name": "Special Redemption Point",
|
||||
"sortId": -10000,
|
||||
"usage": "Can be exchanged for the corresponding event stage reward."
|
||||
},
|
||||
"act5d0_point_medal": {
|
||||
"classifyType": "NONE",
|
||||
"description": "A luxurious, but completely meaningless, golden medal created by the most esteemed goldsmiths in Lungmen. You'll be hard pressed to find anything more limited than this in all of Terra. It's clearly a cup, but still called a medal, and it symbolizes the highest praise of the Emperor. Each sip is worth a thousand bucks, but don't use it to make hot coffee!",
|
||||
@@ -2735,6 +2743,14 @@
|
||||
"sortId": -10000,
|
||||
"usage": null
|
||||
},
|
||||
"rogue_5_token_bp": {
|
||||
"classifyType": "NONE",
|
||||
"description": null,
|
||||
"icon": "rogue_5_token_bp.png",
|
||||
"name": "Stray Geistlings",
|
||||
"sortId": -10000,
|
||||
"usage": null
|
||||
},
|
||||
"sandbox_1_tokencoin": {
|
||||
"classifyType": "NONE",
|
||||
"description": "Each bead of sweat shed upon the barren ground will one day bear witness to the prospering of Terran civilization.",
|
||||
@@ -2743,6 +2759,14 @@
|
||||
"sortId": -10000,
|
||||
"usage": "A voucher that can be exchanged for rewards at 'Expansional Rewards'."
|
||||
},
|
||||
"so_char_exp_1": {
|
||||
"classifyType": "NONE",
|
||||
"description": "Special Operators do battle in extremely complex environments with highly dynamic conditions, and recording them is equally difficult. But if it ends up helping out in some future battle, it will all be worth it.\nThis collection comes with a special 'Interesting Highlights' page.",
|
||||
"icon": "so_char_exp_1.png",
|
||||
"name": "Special Operator Battle Record",
|
||||
"sortId": -10000,
|
||||
"usage": "A device that stores battle videos of Special Operators. Gives Special Operators a certain amount of EXP."
|
||||
},
|
||||
"token_Obsidian": {
|
||||
"classifyType": "NONE",
|
||||
"description": "Just collect them regardless of what they can do. Surely the marketing department will find some use for them.",
|
||||
|
||||
268
resource/global/YoStarEN/resource/tasks/Roguelike/JieGarden.json
Normal file
@@ -0,0 +1,268 @@
|
||||
{
|
||||
"JieGarden@Roguelike@StartAction": {
|
||||
"doc": "Start button is different compared to other ISes"
|
||||
},
|
||||
"JieGarden@Roguelike@CheckLevel": {
|
||||
"text": ["VISIT", "MEMENTO"]
|
||||
},
|
||||
"JieGarden@Roguelike@ConfirmToGiveUp": {
|
||||
"text": ["Retreat"]
|
||||
},
|
||||
"JieGarden@Roguelike@CoppersAnalyzer-CastOCR": {
|
||||
"text": ["Tossed"]
|
||||
},
|
||||
"JieGarden@Roguelike@CoppersExchangeFinish": {
|
||||
"text": ["exchange"]
|
||||
},
|
||||
"JieGarden@Roguelike@CoppersNameOcrReplace": {
|
||||
"ocrReplace": [
|
||||
[" ", ""],
|
||||
["[Bb]al:[Bb]itt?er[Cc]old", "衡-苦寒"],
|
||||
["[Bb]al:[Dd]esire[Ff]ulfill?ed", "衡-志欲遂"],
|
||||
["[Bb]al:[Dd]ewin[Gg]old", "衡-金寒水衍"],
|
||||
["[Bb]al:[Dd]ownpour", "衡-霖雨"],
|
||||
["[Bb]al:[Dd]ry[Hh]eat", "衡-旱热"],
|
||||
["[Bb]al:[Ff]ierce[Gg]ale", "衡-匪风"],
|
||||
["[Bb]al:[Ff]rontier[Mm]oon", "衡-塞上月"],
|
||||
["[Bb]al:[Ff]rost&[Ss]now", "衡-霜雪"],
|
||||
["[Bb]al:[Gg]arr?ison[Ff]arm", "衡-军屯垦"],
|
||||
["[Bb]al:[Gg]oo?d[Hh]arvest", "衡-庆丰收"],
|
||||
["[Bb]al:[Hh]oarfrost", "衡-雾凇"],
|
||||
["[Bb]al:[Mm]oving[Mm]ounts", "衡-移山繁"],
|
||||
["[Bb]al:[Oo]riginal[Ss]cript", "衡-初有文"],
|
||||
["[Bb]al:[Pp]rimal[Ff]arming", "衡-鸿蒙开荒"],
|
||||
["[Bb]al:[Rr]ainbow", "衡-虹霓"],
|
||||
["[Bb]al:[Rr]egular[Ee]xercise", "衡-勤运体"],
|
||||
["[Bb]al:[Rr]ogue[Tt]oken", "衡-诡意代币"],
|
||||
["[Bb]al:[Ss]apient[Ee]vasion", "衡-慧避灾"],
|
||||
["[Bb]al:[Ss]oil-[Bb]orn[Mm]etal", "衡-奇土生金"],
|
||||
["[Bb]al:[Tt]hunderclap", "衡-霹雳"],
|
||||
["[Bb]al:[Ww]aterwoo?d[Gg]uard", "衡-水生木护"],
|
||||
["[Bb]al:[Ww]oo?d[Ff]ee?ds[Ff]lames", "衡-投木炎延"],
|
||||
["[Bb]al:[Ww]orld'?s?[Pp]ionee?r", "衡-天下先"],
|
||||
["[Dd]ayan[Tt]ongbao", "大炎通宝"],
|
||||
["[Ff]antastical", "入幻"],
|
||||
["[Ff]lower:[Bb]ustling[Tt]rade", "花-百业俱兴"],
|
||||
["[Ff]lower:[Cc]hidao[Gg]rowth", "花-驰道长"],
|
||||
["[Ff]lower:[Cc]ocoo?n[Ss]ilk", "花-茧成绢"],
|
||||
["[Ff]lower:[Cc]ohesive[Mm]ight", "花-聚力则强"],
|
||||
["[Ff]lower:[Cc]ultivate[Ss]elf", "花-修性情"],
|
||||
["[Ff]lower:[Dd]uck[Cc]oin", "花-鸭爵金币"],
|
||||
["[Ff]lower:[Ff]ire[Ff]orms[Ss]oil", "花-火灼土沃"],
|
||||
["[Ff]lower:[Gg]odbless?ed", "花-圣诏封神"],
|
||||
["[Ff]lower:[Hh]eavy[Dd]uties", "花-己任重"],
|
||||
["[Ff]lower:[Ll]ong[Dd]istance", "花-载道远"],
|
||||
["[Ff]lower:[Mm]artial[Ff]ight", "花-武人之争"],
|
||||
["[Ff]lower:[Oo]dd[Mm]erchant", "花-神秘商贾"],
|
||||
["[Ff]lower:[Ss]and[Ss]hield", "花-平沙之盾"],
|
||||
["[Ff]lower:[Ss]tove[Aa]light", "花-火上之灶"],
|
||||
["[Ff]lower:[Uu]nclouded[Mm]ind", "花-心无患"],
|
||||
["[Rr]isk:[Aa]rduous[Tt]rade", "厉-商路难行"],
|
||||
["[Rr]isk:[Bb]iding[Tt]ime", "厉-待机缘"],
|
||||
["[Rr]isk:[Bb]loo?dshed[Ss]pill?", "厉-战血流"],
|
||||
["[Rr]isk:[Cc]ity[Cc]oncerns", "厉-隐市忧"],
|
||||
["[Rr]isk:[Cc]ontent[Mm]egamus", "厉-安硕鼷"],
|
||||
["[Rr]isk:[Dd]ark[Cc]oncealment", "厉-无皎之昧"],
|
||||
["[Rr]isk:[Dd]awn'?s?[Tt]eachings", "厉-朝闻道"],
|
||||
["[Rr]isk:[Dd]ream[Cc]urio", "厉-梦奇物"],
|
||||
["[Rr]isk:[Ee]astern[Gg]ap", "厉-东缺角"],
|
||||
["[Rr]isk:[Ff]irst[Ww]ord[Ff]all?s", "厉-一字落"],
|
||||
["[Rr]isk:[Gg]ift ?of ?[Aa]cc?ord", "厉-合乎礼"],
|
||||
["[Rr]isk:[Ll]aw ?and ?[Oo]rder", "厉-法与律"],
|
||||
["[Rr]isk:[Ll]ei[Ff]a[Pp]unishment", "厉-诛邪雷法"],
|
||||
["[Rr]isk:[Mm]ortal[Ee]ndurance", "厉-人间长存"],
|
||||
["[Rr]isk:[Mm]oving[Mm]ount[Hh]ard", "厉-移山难"],
|
||||
["[Rr]isk:[Nn]orthern[Ss]ting", "厉-北刺面"],
|
||||
["[Rr]isk:[Pp]ainter'?s?[Rr]ealm", "厉-画人间"],
|
||||
["[Rr]isk:[Ss]henn?ong[Ww]atches", "厉-神农守"],
|
||||
["[Rr]isk:[Ss]inister[Ss]tealth", "厉-黑子伏"],
|
||||
["[Rr]isk:[Ss]outhern[Mm]ounts", "厉-南见山"],
|
||||
["[Rr]isk:[Ss]trenous[Ss]tudy", "厉-寒窗志"],
|
||||
["[Rr]isk:[Ss]ui'?s?[Aa]wakening", "厉-岁醒天时"],
|
||||
["[Rr]isk:[Tt]wo-[Rr]iver[Ss]pring", "厉-两江春"],
|
||||
["[Rr]isk:[Uu]niversal[Cc]hange", "厉-凡物变"],
|
||||
["[Rr]isk:[Ww]eiqi[Cc]hance", "厉-遇良弈"],
|
||||
["[Rr]isk:[Ww]est[Ll]ianzhen[Mm]t\\.?", "厉-西廉贞"],
|
||||
["[Rr]isk:[Ww]ild[Pp]ass?ion", "厉-恣狂情"],
|
||||
["[Rr]usty", "锈色"],
|
||||
["[Ss]urvival", "存护"],
|
||||
["rogue_5_copper_buff_F_28_a", "衡-挪移"],
|
||||
["rogue_5_copper_buff_F_29_a", "衡-迅步"],
|
||||
["rogue_5_copper_buff_F_30_a", "厉-生材百相"],
|
||||
["rogue_5_copper_buff_F_31_a", "衡-重铠"],
|
||||
["rogue_5_copper_buff_F_32_a", "厉-火机"],
|
||||
["rogue_5_copper_buff_R_12_a", "花-界园行"],
|
||||
["rogue_5_copper_buff_R_13_a", "衡-债难偿"],
|
||||
["rogue_5_copper_buff_R_14_a", "衡-触锁代币"],
|
||||
["rogue_5_copper_buff_R_15_a", "花-延识镇木"],
|
||||
["rogue_5_copper_buff_S_8_a", "花-孜孜不倦"],
|
||||
["rogue_5_gild_bat_4", "引光"],
|
||||
["rogue_5_gild_bat_5", "巡游"]
|
||||
]
|
||||
},
|
||||
"JieGarden@Roguelike@GetDropSwitch": {
|
||||
"template": ["JieGarden@Roguelike@GetDropSwitch.png", "JieGarden@Roguelike@GetDropSwitch2.png"]
|
||||
},
|
||||
"JieGarden@Roguelike@GiveUpOperation": {
|
||||
"text": ["Retreat"]
|
||||
},
|
||||
"JieGarden@Roguelike@NextLevel": {
|
||||
"text": [
|
||||
"Honglu Tower",
|
||||
"Shanshui Pavilion",
|
||||
"Yunwa Gazebo",
|
||||
".*Ruwu Gate",
|
||||
"Jianzi Shrine",
|
||||
"Shimo Tomb",
|
||||
"Shifei Border"
|
||||
],
|
||||
"roi": [490, 545, 284, 44]
|
||||
},
|
||||
"JieGarden@Roguelike@ReserveRecruitmentVoucherConfirm": {
|
||||
"text": ["Conserve"]
|
||||
},
|
||||
"JieGarden@Roguelike@SelectTheme": {
|
||||
"text": ["Visit", "Memento"]
|
||||
},
|
||||
"JieGarden@Roguelike@StageCombatOpsStartActionThenLeave": {
|
||||
"doc": "In Diff 3 or above, when using the Investment strategy, this StartAction template is used for FastPass.",
|
||||
"template": "JieGarden@Roguelike@StartAction.png"
|
||||
},
|
||||
"JieGarden@Roguelike@StageSafeHouseReuse": {
|
||||
"text": ["Use the Safe House again", "Use the Safe"]
|
||||
},
|
||||
"JieGarden@Roguelike@StrategyChange_mode0": {
|
||||
"text": ["_default", "_boskyPassageDefault"],
|
||||
"ocrReplace": [
|
||||
["Honglu Tower", "_default"],
|
||||
["Shanshui Pavilion", "_default"],
|
||||
["Yunwa Gazebo", "_default"],
|
||||
[".*Ruwu Gat.?", "_default"],
|
||||
["Jianzi Shrine", "_default"],
|
||||
["Shimo Tomb", "_default"],
|
||||
["Shifei Border", "_boskyPassageDefault"]
|
||||
],
|
||||
"roi": [590, 17, 145, 24]
|
||||
},
|
||||
"JieGarden@Roguelike@StrategyChange_mode0_NOT_IN_USE": {
|
||||
"ocrReplace": [
|
||||
["Honglu Tower", "_aggressive"],
|
||||
["Shanshui Pavilion", "_aggressive"],
|
||||
["Yunwa Gazebo", "_pragmatic"],
|
||||
[".*Ruwu Gat.?", "_pragmatic"],
|
||||
["Jianzi Shrine", "_default"],
|
||||
["Shimo Tomb", "_default"],
|
||||
["Shifei Border", "_boskyPassageDefault"]
|
||||
],
|
||||
"roi": [590, 17, 145, 24]
|
||||
},
|
||||
"JieGarden@Roguelike@StrategyChange_mode1": {
|
||||
"ocrReplace": [
|
||||
["Honglu Tower", "_default"],
|
||||
["Shanshui Pavilion", "_restart"],
|
||||
["Yunwa Gazebo", "_restart"],
|
||||
[".*Ruwu Gat.?", "_restart"],
|
||||
["Jianzi Shrine", "_restart"],
|
||||
["Shimo Tomb", "_restart"],
|
||||
["Shifei Border", "_leaveBoskyPassage"]
|
||||
],
|
||||
"roi": [590, 17, 145, 24]
|
||||
},
|
||||
"JieGarden@Roguelike@StrategyChange_mode1-FastPass": {
|
||||
"ocrReplace": [
|
||||
["Honglu Tower", "_fastPass"],
|
||||
["Shanshui Pavilion", "_restart"],
|
||||
["Yunwa Gazebo", "_restart"],
|
||||
[".*Ruwu Gat.?", "_restart"],
|
||||
["Jianzi Shrine", "_restart"],
|
||||
["Shimo Tomb", "_restart"],
|
||||
["Shifei Border", "_leaveBoskyPassage"]
|
||||
],
|
||||
"roi": [590, 17, 145, 24]
|
||||
},
|
||||
"JieGarden@Roguelike@StrategyChange_mode10001": {
|
||||
"ocrReplace": [
|
||||
["Honglu Tower", "_fastPass"],
|
||||
["Shanshui Pavilion", "_restart"],
|
||||
["Yunwa Gazebo", "_restart"],
|
||||
[".*Ruwu Gat.?", "_restart"],
|
||||
["Jianzi Shrine", "_restart"],
|
||||
["Shimo Tomb", "_restart"],
|
||||
["Shifei Border", "_leaveBoskyPassage"]
|
||||
],
|
||||
"roi": [590, 17, 145, 24]
|
||||
},
|
||||
"JieGarden@Roguelike@StrategyChange_mode20001": {
|
||||
"ocrReplace": [
|
||||
["Honglu Tower", "_default"],
|
||||
["Shanshui Pavilion", "_restart"],
|
||||
["Yunwa Gazebo", "_restart"],
|
||||
[".*Ruwu Gat.?", "_restart"],
|
||||
["Jianzi Shrine", "_restart"],
|
||||
["Shimo Tomb", "_restart"],
|
||||
["Shifei Border", "_boskyPassageDefault"]
|
||||
],
|
||||
"roi": [590, 17, 145, 24]
|
||||
},
|
||||
"JieGarden@Roguelike@StrategyChange_mode4": {
|
||||
"ocrReplace": [
|
||||
["Honglu Tower", "_default"],
|
||||
["Shanshui Pavilion", "_exit"],
|
||||
["Yunwa Gazebo", "_exit"],
|
||||
[".*Ruwu Gat.?", "_exit"],
|
||||
["Jianzi Shrine", "_exit"],
|
||||
["Shimo Tomb", "_exit"],
|
||||
["Shifei Border", "_leaveBoskyPassage"]
|
||||
],
|
||||
"roi": [590, 17, 145, 24]
|
||||
},
|
||||
"JieGarden@Roguelike@StrategyChange_mode4-FastPass": {
|
||||
"ocrReplace": [
|
||||
["Honglu Tower", "_fastPass"],
|
||||
["Shanshui Pavilion", "_exit"],
|
||||
["Yunwa Gazebo", "_exit"],
|
||||
[".*Ruwu Gat.?", "_exit"],
|
||||
["Jianzi Shrine", "_exit"],
|
||||
["Shimo Tomb", "_exit"],
|
||||
["Shifei Border", "_leaveBoskyPassage"]
|
||||
],
|
||||
"roi": [590, 17, 145, 24]
|
||||
},
|
||||
"JieGarden@Roguelike@StrategyChange_mode6": {
|
||||
"ocrReplace": [
|
||||
["Honglu Tower", "_default"],
|
||||
["Shanshui Pavilion", "_default"],
|
||||
["Yunwa Gazebo", "_default"],
|
||||
[".*Ruwu Gat.?", "_default"],
|
||||
["Jianzi Shrine", "_default"],
|
||||
["Shimo Tomb", "_default"],
|
||||
["Shifei Border", "_boskyPassageDefault"]
|
||||
],
|
||||
"roi": [590, 17, 145, 24]
|
||||
},
|
||||
"JieGarden@Roguelike@StrategyChange_mode7": {
|
||||
"ocrReplace": [
|
||||
["Honglu Tower", "_default"],
|
||||
["Shanshui Pavilion", "_default"],
|
||||
["Yunwa Gazebo", "_default"],
|
||||
[".*Ruwu Gat.?", "_default"],
|
||||
["Jianzi Shrine", "_default"],
|
||||
["Shimo Tomb", "_default"],
|
||||
["Shifei Border", "_boskyPassageDefault"]
|
||||
],
|
||||
"roi": [590, 17, 145, 24]
|
||||
},
|
||||
"JieGarden@RoguelikeEncounterOptionAnalyzer-OptionHeaderBar-Text": {
|
||||
"ocrReplace": [
|
||||
[" ", ""],
|
||||
["Eatyourfill", "饱餐一顿"],
|
||||
["Boostmorale", "鼓舞士气"],
|
||||
["Treatyourwounds", "医治伤口"],
|
||||
["Wavethesignalflag", "摇动令旗"],
|
||||
["Takeabreak", "稍事休息"],
|
||||
["Reorganize", "重整编制"],
|
||||
["Getintoformation", "布下阵法"],
|
||||
["Lightacandle", "点燃蜡烛"]
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -77,7 +77,6 @@
|
||||
]
|
||||
},
|
||||
"Sarkaz@Roguelike@StrategyChange_mode1": {
|
||||
"text": ["_default", "_exit"],
|
||||
"ocrReplace": [
|
||||
["Furnace Origin", "_default"],
|
||||
["Wrought Ironroots", "_exit"],
|
||||
|
||||
@@ -17,13 +17,16 @@
|
||||
},
|
||||
"RoguelikeCustom-HijackRoles": {
|
||||
"ocrReplace": [
|
||||
["As Your Heart Desires", "随心所欲"],
|
||||
["First Move Advantage", "先手必胜"],
|
||||
["Slow and Steady Wins", "稳扎稳打"],
|
||||
["the Race", "稳扎稳打"],
|
||||
["Steadily, Surely", "稳扎稳打"],
|
||||
["Steady Win", "稳扎稳打"],
|
||||
["Overcoming Your", "取长补短"],
|
||||
["Weaknesses", "取长补短"]
|
||||
["Weaknesses", "取长补短"],
|
||||
["Flexible Deployment", "灵活部署"],
|
||||
["Indestructible", "坚不可摧"],
|
||||
["As Your Heart Desires", "随心所欲"]
|
||||
]
|
||||
},
|
||||
"RoguelikeCustom-HijackSquad": {
|
||||
@@ -53,7 +56,15 @@
|
||||
["Ingots Squad", "点刺成锭分队 "],
|
||||
["Collection Squad", "拟态学者分队"],
|
||||
["Mimic Squad", "异想天开分队"],
|
||||
["Top Gun Squad", "专业人士分队"]
|
||||
["Top Gun Squad", "专业人士分队"],
|
||||
["High Ground Breaching Squad", "高台突破分队"],
|
||||
["Ground Breaching Squad", "地面突破分队"],
|
||||
["Tourist Squad", "游客分队"],
|
||||
["Sui Regulator Squad", "司岁台分队"],
|
||||
["Tianshi Bureau Squad", "天师府分队"],
|
||||
["Cluster of Blooms Squad__DLC__", "花团锦簇分队"],
|
||||
["Daring Gambit Squad__DLC__", "棋行险着分队"],
|
||||
["Echoes of Time Squad__DLC__", "岁影回音分队"]
|
||||
]
|
||||
},
|
||||
"RoguelikeFormationOcr": {
|
||||
@@ -754,7 +765,158 @@
|
||||
["Elite Caster [Rec. Voucher \\(Crimson\\)]*", "高级术师招募券(猩红)"],
|
||||
["Elite Defender [Rec. Voucher \\(Crimson\\)]*", "高级重装招募券(猩红)"],
|
||||
["Elite Medic [Rec. Voucher \\(Crimson\\)]*", "高级医疗招募券(猩红)"],
|
||||
["Elite Specialist [Rec. Voucher \\(Crimson\\)]*", "高级特种招募券(猩红)"]
|
||||
["Elite Specialist [Rec. Voucher \\(Crimson\\)]*", "高级特种招募券(猩红)"],
|
||||
["Metal Expedition Drum", "铿金征鼓"],
|
||||
["Remnant Flames And Dreams", "旧烽遗梦"],
|
||||
["Brewed Realm", "酿山河"],
|
||||
["Strange Picky Statue", "异食兽像"],
|
||||
["'Little Baizao'", "“小百灶”"],
|
||||
["Rampart Burdenbeast", "驮垒"],
|
||||
["Duo-Carrier Sedan", "二抬肩舆"],
|
||||
["Big Bob's Certificate", "鲍老板的凭证"],
|
||||
["Deepwater Talisman", "临渊符"],
|
||||
["Raidian's Handheld Console", "电弧的掌机"],
|
||||
["'Cangtong'", "“苍桐”"],
|
||||
["'Numbness and Obscenity'", "《麻木与庸俗》"],
|
||||
["Family Stir-Fry", "家常小炒"],
|
||||
["Cloud & Paint", "云与漆"],
|
||||
["Ink of Dawn and Dusk", "旦夕墨宝"],
|
||||
["Everlasting Guiding Light", "长明灯引"],
|
||||
["Geist Binding Rope", "束伥索"],
|
||||
["'Fist Classics 123'", "《拳经三问》"],
|
||||
["Remnant Spring", "留春"],
|
||||
["Evaluation Minister", "赏善郎"],
|
||||
["Mother Cauldron", "母鼎"],
|
||||
["Yi Lock", "易锁"],
|
||||
["'Interdependent Luck'", "“福祸相依”"],
|
||||
["'Seen Flower'", "“见花”"],
|
||||
["'Thrown Flower'", "“掷花”"],
|
||||
["'Plucked Risk'", "“摘厉”"],
|
||||
["'Sui's Risk'", "“岁厉”"],
|
||||
["'Sui's Flower'", "“岁花”"],
|
||||
["'Plucked Balance'", "“摘衡”"],
|
||||
["Merchant Shadow", "商影"],
|
||||
["'Collection of Elegance'", "《雅集》"],
|
||||
["Woodblock Prints", "传芳雕版"],
|
||||
["Candlelit Voucher", "烟烛"],
|
||||
["Rhodes Island Emergency Rescue Vehicle", "罗德岛应急救援车"],
|
||||
["'Yanese Dictionary'", "《炎国字汇》"],
|
||||
["'Ah Meng'", "“阿猛”"],
|
||||
["Brocade Banner", "飞锦战旌"],
|
||||
["Enlistment Order", "封神令"],
|
||||
["Charcoal Mask", "炭面"],
|
||||
["'Intro to Weiqi Openings'", "《围棋入门布局篇》"],
|
||||
["Craftsman Shadow", "匠影"],
|
||||
["Ink of the Hidden Butterfly", "隐蝶墨"],
|
||||
["Snack Basket", "零嘴背篓"],
|
||||
["'Firefly Booklight'", "“萤灯映牍”"],
|
||||
["Quickbeast Transport", "飞驮客运"],
|
||||
["'Blademace'", "“剑锤”"],
|
||||
["Complex Yi Lock", "错易锁"],
|
||||
["Soldier Shadow", "士影"],
|
||||
["'Thrown Balance'", "“掷衡”"],
|
||||
["Three Feet To All", "三尺万象"],
|
||||
["Four Seasons Brush", "四时丹青毫"],
|
||||
["Chamber of Geists Ledger", "伥物房账簿"],
|
||||
["Carved Inkstick Remnant", "墨化残碑"],
|
||||
["Round Woodwheel", "圆木轮"],
|
||||
["Borderbound Mirror", "镜中境"],
|
||||
["Bells of Agreement", "契心聆铃"],
|
||||
["Osmanthus Goblet", "桂花杯"],
|
||||
["Toy Slingshot", "玩具弹弓"],
|
||||
["'A Jade Jue'", "“成玦”"],
|
||||
["Coin Geists", "一串钱伥"],
|
||||
["Delicate Bamboo", "嫰竹"],
|
||||
["Screeching Blowgun", "鸣镝吹筒"],
|
||||
["Artist Shadow", "艺影"],
|
||||
["Fire Poking Stick", "烧火棍"],
|
||||
["Walleye", "墙眼"],
|
||||
["'Plucked Flower'", "“摘花”"],
|
||||
["Four Corners Paint", "四方绘料"],
|
||||
["'Sui's Balance'", "“岁衡”"],
|
||||
["'Seen Balance'", "“见衡”"],
|
||||
["Varied Fortune", "吉运有三"],
|
||||
["Old Sandal", "故履"],
|
||||
["Training Lightning Rod", "修习雷针"],
|
||||
["'Thrown Risk'", "“掷厉”"],
|
||||
["Ignited Beastkite", "引火兽筝"],
|
||||
["Unflinching Masterplan", "忘生珍珑"],
|
||||
["Moon-Lady Mask", "月女面"],
|
||||
["Dark Red Mask", "枣面"],
|
||||
["Elder Mask", "老者面"],
|
||||
["Wooden Lump", "木疙瘩"],
|
||||
["'Seen Risk'", "“见厉”"],
|
||||
["Gallopbeast Chariot", "奔兽战车"],
|
||||
["Three-Legged Goldfowl", "三足金雏"],
|
||||
["Bal:Bitter Cold", "衡-苦寒"],
|
||||
["Bal:Desire Fulfilled", "衡-志欲遂"],
|
||||
["Bal:Dew in Gold", "衡-金寒水衍"],
|
||||
["Bal:Downpour", "衡-霖雨"],
|
||||
["Bal:Dry Heat", "衡-旱热"],
|
||||
["Bal:Fierce Gale", "衡-匪风"],
|
||||
["Bal:Frontier Moon", "衡-塞上月"],
|
||||
["Bal:Frost & Snow", "衡-霜雪"],
|
||||
["Bal:Garrison Farm", "衡-军屯垦"],
|
||||
["Bal:Good Harvest", "衡-庆丰收"],
|
||||
["Bal:Hoarfrost", "衡-雾凇"],
|
||||
["Bal:Moving Mounts", "衡-移山繁"],
|
||||
["Bal:Original Script", "衡-初有文"],
|
||||
["Bal:Primal Farming", "衡-鸿蒙开荒"],
|
||||
["Bal:Rainbow", "衡-虹霓"],
|
||||
["Bal:Regular Exercise", "衡-勤运体"],
|
||||
["Bal:Rogue Token", "衡-诡意代币"],
|
||||
["Bal:Sapient Evasion", "衡-慧避灾"],
|
||||
["Bal:Soil-Born Metal", "衡-奇土生金"],
|
||||
["Bal:Thunderclap", "衡-霹雳"],
|
||||
["Bal:Waterwood Guard", "衡-水生木护"],
|
||||
["Bal:WoodFeedsFlames", "衡-投木炎延"],
|
||||
["Bal:World's Pioneer", "衡-天下先"],
|
||||
["Dayan Tongbao", "大炎通宝"],
|
||||
["Fantastical", "入幻"],
|
||||
["Flower:BustlingTrade", "花-百业俱兴"],
|
||||
["Flower:Chidao Growth", "花-驰道长"],
|
||||
["Flower:Cocoon Silk", "花-茧成绢"],
|
||||
["Flower:CohesiveMight", "花-聚力则强"],
|
||||
["Flower:CultivateSelf", "花-修性情"],
|
||||
["Flower:Duck Coin", "花-鸭爵金币"],
|
||||
["Flower:FireFormsSoil", "花-火灼土沃"],
|
||||
["Flower:Godblessed", "花-圣诏封神"],
|
||||
["Flower:Heavy Duties", "花-己任重"],
|
||||
["Flower:Long Distance", "花-载道远"],
|
||||
["Flower:Martial Fight", "花-武人之争"],
|
||||
["Flower:Odd Merchant", "花-神秘商贾"],
|
||||
["Flower:Sand Shield", "花-平沙之盾"],
|
||||
["Flower:Stove Alight", "花-火上之灶"],
|
||||
["Flower:UncloudedMind", "花-心无患"],
|
||||
["Risk:Arduous Trade", "厉-商路难行"],
|
||||
["Risk:Biding Time", "厉-待机缘"],
|
||||
["Risk:Bloodshed Spill", "厉-战血流"],
|
||||
["Risk:City Concerns", "厉-隐市忧"],
|
||||
["Risk:Content Megamus", "厉-安硕鼷"],
|
||||
["Risk:DarkConcealment", "厉-无皎之昧"],
|
||||
["Risk:Dawn'sTeachings", "厉-朝闻道"],
|
||||
["Risk:Dream Curio", "厉-梦奇物"],
|
||||
["Risk:Eastern Gap", "厉-东缺角"],
|
||||
["Risk:FirstWordFalls", "厉-一字落"],
|
||||
["Risk:Gift of Accord", "厉-合乎礼"],
|
||||
["Risk:Law and Order", "厉-法与律"],
|
||||
["Risk:LeiFaPunishment", "厉-诛邪雷法"],
|
||||
["Risk:MortalEndurance", "厉-人间长存"],
|
||||
["Risk:MovingMountHard", "厉-移山难"],
|
||||
["Risk:Northern Sting", "厉-北刺面"],
|
||||
["Risk:Painter's Realm", "厉-画人间"],
|
||||
["Risk:ShennongWatches", "厉-神农守"],
|
||||
["Risk:SinisterStealth", "厉-黑子伏"],
|
||||
["Risk:Southern Mounts", "厉-南见山"],
|
||||
["Risk:Strenuous Study", "厉-寒窗志"],
|
||||
["Risk:Sui's Awakening", "厉-岁醒天时"],
|
||||
["Risk:Two-RiverSpring", "厉-两江春"],
|
||||
["Risk:UniversalChange", "厉-凡物变"],
|
||||
["Risk:Weiqi Chance", "厉-遇良弈"],
|
||||
["Risk:WestLianzhenMt.", "厉-西廉贞"],
|
||||
["Risk:Wild Passion", "厉-恣狂情"],
|
||||
["Rusty", "锈色"],
|
||||
["Survival", "存护"]
|
||||
]
|
||||
},
|
||||
"Roguelike@ChooseDifficultyConfirm": {
|
||||
@@ -778,7 +940,7 @@
|
||||
},
|
||||
"Roguelike@StageEncounterOcr": {
|
||||
"ocrReplace": [
|
||||
[" |<|>", ""],
|
||||
[" |<|>|-", ""],
|
||||
["^\\d+", ""],
|
||||
["Disappear\\.\\.\\.", "消失......"],
|
||||
["Disappear\\.", "消失。"],
|
||||
@@ -884,7 +1046,7 @@
|
||||
["'?TinMan'?", "“锡人”"],
|
||||
["MissingMountains", "不见群山"],
|
||||
["Reprieve\\??", "解脱?"],
|
||||
["On-siteatPublicSignalAmplificationStation756", "在地公共信号放大站756号"],
|
||||
["OnsiteatPublicSignalAmplificationStation756", "在地公共信号放大站756号"],
|
||||
["'?ArtConnoisseur'?", "“鉴赏家”"],
|
||||
["'?RoyalRumble'?", "“皇家争执”"],
|
||||
["SearchingForAPathForward", "探寻前路"],
|
||||
@@ -907,7 +1069,7 @@
|
||||
["Entourage", "随行人员"],
|
||||
["DuckLord'sSinisterPlot", "邪恶计划鸭"],
|
||||
["ChainofCamps", "百里连营"],
|
||||
["On-stageInvitation", "请君入戏"],
|
||||
["OnstageInvitation", "请君入戏"],
|
||||
["NorthwindWitch", "北风女巫"],
|
||||
["NorthwizardCup", "北地巫师竞技"],
|
||||
["BestBuddies", "最好的朋友"],
|
||||
@@ -920,7 +1082,7 @@
|
||||
["Clairvoyance'sDirection", "远见所向"],
|
||||
["ForwardForest", "前行的林地"],
|
||||
["TrimountsTravelAgencyDispatch", "特里蒙旅行社特派团"],
|
||||
["On-siteatPublicNomadicStationN6", "在地公共移动站N6号"],
|
||||
["OnsiteatPublicNomadicStationN6", "在地公共移动站N6号"],
|
||||
["GrabandGo", "随到随取"],
|
||||
["BlackFootprints", "黑色足迹"],
|
||||
["UnfreezingRiver", "不冻河"],
|
||||
@@ -980,7 +1142,56 @@
|
||||
["Disappear—", "消失——"],
|
||||
["PlausibleButFalse", "似是而非"],
|
||||
["OmenintheVoid", "空无前兆"],
|
||||
["AllorNothing", "孤注一掷"]
|
||||
["AllorNothing", "孤注一掷"],
|
||||
["Liu.*er", "柳儿"],
|
||||
["View", "所见"],
|
||||
["HeroesofNanwu", "南武群英会"],
|
||||
["IntheRestPavilion", "入暂亭"],
|
||||
["LoneAngler", "孤钓"],
|
||||
["RitesofFlame", "火祀"],
|
||||
["TaotieVeranda", "饕餮廊"],
|
||||
["Seclusion", "偏安"],
|
||||
["SuppressingtheEarth", "地镇"],
|
||||
["ForkintheRoad", "岔路"],
|
||||
["FormsLostMeaning", "存形失意"],
|
||||
["CircledSquare", "天圆地方"],
|
||||
["Advice", "点拨"],
|
||||
["Amber", "珀"],
|
||||
["ResonantWords", "掷地有声"],
|
||||
["OnePlayerShort", "三缺一"],
|
||||
["MemorialHallEntrance", "祠堂口"],
|
||||
["PrayerforProtection", "禳解"],
|
||||
["ABevyofFireworks", "烟火漫天"],
|
||||
["StampCollection", "集印"],
|
||||
["Communication", "传讯"],
|
||||
["MountofStone", "石山"],
|
||||
["AMeeting", "相会"],
|
||||
["HallofCandles", "烛堂"],
|
||||
["AGameofWeiqi", "执棋"],
|
||||
["GuestfromtheSea", "海中来客"],
|
||||
["GardenofHarvest", "硕果园"],
|
||||
["YakshaCollector", "催债鬼夜叉"],
|
||||
["BoutbytheDuskRiver", "夕江对擂"],
|
||||
["SheWitnesses", "观者自在"],
|
||||
["RotundGodofWealth", "滚圆财神"],
|
||||
["NimblePerroThief", "鼓上佩洛"],
|
||||
["NaturalRedoubt", "天险"],
|
||||
["DuckingEmperor", "千古鸭帝"],
|
||||
["AllAreWelcome", "来者不拒"],
|
||||
[".*BigBob.*sChain.*", "“鲍老板连锁”"],
|
||||
["OldSlyfeather", "老贼羽"],
|
||||
["An.*Accumulation.*ofLife", "应“蕴”而生"],
|
||||
["Lamp.*HoldersandCandle.*Wielders", "掌灯与引烛"],
|
||||
["DuckGuardian", "护鸭金刚"],
|
||||
["Concentricity", "同心"],
|
||||
["FinishingTouch", "点睛"],
|
||||
["ButterflyofElm", "榆蝶"],
|
||||
["UninvitedGuest", "不速之客"],
|
||||
["SowCause.*ReapConsequence", "种因得果"],
|
||||
["AChancetoLive", "生机"],
|
||||
["HundredClanRebellion", "百氏之乱"],
|
||||
["TheFinishingStroke", "收笔"],
|
||||
["MeetingaFriend", "会友"]
|
||||
]
|
||||
},
|
||||
"Roguelike@StageTraderInvestSystem": {
|
||||
|
||||
@@ -926,8 +926,20 @@
|
||||
["Blood's Whisper", "本能的召唤"],
|
||||
["Tippi", "蒂比"],
|
||||
["Tragodia", "酒神"],
|
||||
["Leizi the Thunderbringer", "司霆惊蛰"],
|
||||
["Record Keeper", "录武官"]
|
||||
["Leiz?i t?he Thunderbringer", "司霆惊蛰"],
|
||||
["Record Keeper", "录武官"],
|
||||
["Chamber of Treasures", "聚宝斋"],
|
||||
["Candle Stand", "明烛台"],
|
||||
["Flaw", "瑕"],
|
||||
["Strange Gourd", "怪葫芦"],
|
||||
["Iron Gourd", "铁葫芦"],
|
||||
["Magic Gourd", "宝葫芦"],
|
||||
["Statuegeist", "雕伥"],
|
||||
["Center", "桑特拉"],
|
||||
["Dive", "戴乌"],
|
||||
["Raidian", "电弧"],
|
||||
["Cycle", "赛柯"],
|
||||
["Artifact Center", "遗物中枢"]
|
||||
]
|
||||
},
|
||||
"GameStartCheckResourceOCR": {
|
||||
@@ -1392,7 +1404,75 @@
|
||||
["Motorized Squad", "机动队"],
|
||||
["Fate's Finale", "不容拒绝"],
|
||||
["Dense Jungle", "丛林密布"],
|
||||
["Motorized Squad", "机动队"]
|
||||
["Silicon Geist's Banquet", "硅基伥的宴席"],
|
||||
["Biding Time", "以逸待劳"],
|
||||
["Feast of Fruit", "硕果累累"],
|
||||
["Calamitous Punishment", "劫罚"],
|
||||
["Duck and Yi", "易易鸭鸭"],
|
||||
["Totally Out of Control", "彻底失控"],
|
||||
["Reeducation", "循循善诱"],
|
||||
["Sparkling Shine", "闪闪发光"],
|
||||
["Steady Stream", "源源不断"],
|
||||
["Inner Rage", "愠怒"],
|
||||
["Breakthrough", "破局"],
|
||||
["Avarice", "贪妄"],
|
||||
["To Forget Oneself", "忘形"],
|
||||
["Ware-User", "凭器"],
|
||||
["Confusion", "迷惘"],
|
||||
["Garrison", "人镇"],
|
||||
["Inferno", "炎灼"],
|
||||
["Mangshan Town Records", "邙山镇地方志"],
|
||||
["A Humble Gift", "薄礼一份"],
|
||||
["Unreflecting", "不鉴"],
|
||||
["Departing Inspection", "离域检查"],
|
||||
["Beware the Shadows", "暗箭难防"],
|
||||
["Exemplary Service", "峥嵘战功"],
|
||||
["Take the Stage", "赶场戏班"],
|
||||
["Shanhaizhong Scramble", "山海必争"],
|
||||
["Return to Your Roots", "落叶归根"],
|
||||
["Cultured", "识文"],
|
||||
["Stopping the Advance", "长驱不复"],
|
||||
["Away, Hui!", "去晦"],
|
||||
["Feng Shui", "背山面水"],
|
||||
["Guardian of Justice", "所守者,义"],
|
||||
["Hook, Line, and Sinker", "啖之以利"],
|
||||
["Learning for All", "有教无类"],
|
||||
["Look Out Above", "飞来横祸"],
|
||||
["Veteran Actor", "老戏骨"],
|
||||
["Serious Business", "正经生意"],
|
||||
["To Market", "赶集"],
|
||||
["Against the Flood", "斥洪"],
|
||||
["To the Fall", "赴陨"],
|
||||
["Defying Quakes", "蔑震"],
|
||||
["Slandering Heaven", "谤天"],
|
||||
["Cliff of Geists", "为崖作伥"],
|
||||
["Sit Back and Watch", "作壁上观"],
|
||||
["Astral Projection", "神游天外"],
|
||||
["Whack-A-Mus", "狡鼷三窟"],
|
||||
["Muted Past", "往事喑哑"],
|
||||
["Heroes of Nanwu", "南武群英会"],
|
||||
["Green Hills Speak Not", "青山不语"],
|
||||
["The Sui Strategist", "谋岁者"],
|
||||
["The Suppression of Sui", "破岁阵祀"],
|
||||
["Seeking the Way", "求道"],
|
||||
["Enlightenment", "点化"],
|
||||
["Compassion, Justice, Valor", "仁·义·武"],
|
||||
["Memories of Dusk Beauty", "夕娥忆"],
|
||||
["Cold Moonlight", "月华寒"],
|
||||
["Strange Tales", "奇谭"],
|
||||
["Sugared Bait", "贪饵"],
|
||||
["The Four Difficulties", "地有四难"],
|
||||
["Unlit Sparks", "不成烟火"],
|
||||
["Of Hundred Forms", "生百相"],
|
||||
["Joy From Burdenbeast", "喜从驮来"],
|
||||
["Words Past Like Smoke", "昔字如烟"],
|
||||
["Bout by the Dusk River", "夕江对擂"],
|
||||
["Daylight Robbery", "明抢暗偷"],
|
||||
["Sword, Glaive, Spear", "剑·刀·矛"],
|
||||
["Amidst Thunder", "迎雷"],
|
||||
["Clarity", "分明"],
|
||||
["Frivolous Tunes", "靡靡之音"],
|
||||
["Return to Your Roots", "落叶归根"]
|
||||
]
|
||||
},
|
||||
"BattleQuickFormationClear": {
|
||||
|
||||
|
Before Width: | Height: | Size: 634 B After Width: | Height: | Size: 647 B |
|
After Width: | Height: | Size: 564 B |
|
After Width: | Height: | Size: 6.9 KiB |
|
After Width: | Height: | Size: 4.6 KiB |
|
After Width: | Height: | Size: 7.7 KiB |
|
After Width: | Height: | Size: 9.6 KiB |
|
After Width: | Height: | Size: 6.9 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 7.2 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 27 KiB |
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 8.3 KiB |
|
After Width: | Height: | Size: 8.7 KiB |
|
After Width: | Height: | Size: 29 KiB |
|
After Width: | Height: | Size: 8.7 KiB |
|
After Width: | Height: | Size: 6.3 KiB |
|
After Width: | Height: | Size: 8.8 KiB |
|
After Width: | Height: | Size: 8.3 KiB |
|
After Width: | Height: | Size: 9.4 KiB |
|
After Width: | Height: | Size: 8.8 KiB |
|
After Width: | Height: | Size: 9.3 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 7.9 KiB |
|
After Width: | Height: | Size: 69 KiB |
|
After Width: | Height: | Size: 52 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 40 KiB |
|
After Width: | Height: | Size: 40 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 9.1 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 27 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 41 KiB |
|
Before Width: | Height: | Size: 826 B After Width: | Height: | Size: 586 B |
@@ -7,5 +7,5 @@
|
||||
"pool": "The Rolling Thunder",
|
||||
"time": 1765454400
|
||||
},
|
||||
"last_updated": "2025-12-11 12:05:46.000"
|
||||
"last_updated": "2025-12-18 15:48:47.000"
|
||||
}
|
||||
|
||||
@@ -2071,6 +2071,14 @@
|
||||
"sortId": -10000,
|
||||
"usage": "抑制ユニットのデータアップデートを行うために使用する。"
|
||||
},
|
||||
"act5collection_point_token": {
|
||||
"classifyType": "NONE",
|
||||
"description": "特勤オペレーターへのボーナスとして、ロドスは必要な物資と交換できるポイントを配布することにした。",
|
||||
"icon": "act5collection_point_token.png",
|
||||
"name": "特別交換ポイント",
|
||||
"sortId": -10000,
|
||||
"usage": "対応する報酬と交換できる。"
|
||||
},
|
||||
"act5d0_point_medal": {
|
||||
"classifyType": "NONE",
|
||||
"description": "無駄に豪華な純金製。龍門トップクラスの彫金師の手によって仕上げられた逸品。全テラ数量限定。明らかにカップの形をしているのに勲章だと言い張っている。エンペラーからの最高の栄誉の象徴であり、値千金ともっぱらの噂。ただしこれでアツアツのコーヒーを淹れるのはダメ。ゼッタイ。",
|
||||
@@ -2743,6 +2751,14 @@
|
||||
"sortId": -10000,
|
||||
"usage": null
|
||||
},
|
||||
"rogue_5_token_bp": {
|
||||
"classifyType": "NONE",
|
||||
"description": null,
|
||||
"icon": "rogue_5_token_bp.png",
|
||||
"name": "迷子の器鬼幼体",
|
||||
"sortId": -10000,
|
||||
"usage": null
|
||||
},
|
||||
"sandbox_1_tokencoin": {
|
||||
"classifyType": "NONE",
|
||||
"description": "荒野の土にこぼした汗水は、その一滴一滴がテラ文明の繁栄を見届けることだろう。",
|
||||
@@ -2751,6 +2767,14 @@
|
||||
"sortId": -10000,
|
||||
"usage": "「繁栄の成果」で報酬との交換に用いられる。"
|
||||
},
|
||||
"so_char_exp_1": {
|
||||
"classifyType": "NONE",
|
||||
"description": "特勤オペレーターの作戦環境は多岐にわたり、状況も刻一刻と変化する。映像記録の撮影は困難を極めたが、今後の作戦に役立つなら苦労の甲斐もあったというもの。\n今回の総集編には、なんと特別メイキング映像がついている。",
|
||||
"icon": "so_char_exp_1.png",
|
||||
"name": "特勤作戦記録",
|
||||
"sortId": -10000,
|
||||
"usage": "特勤オペレーターの作戦映像を記録した情報記憶装置。使用するとオペレーターの経験値が増加する。"
|
||||
},
|
||||
"token_Obsidian": {
|
||||
"classifyType": "NONE",
|
||||
"description": "何に使うか知らなくても、集めておけば間違いない。最終的には事業開発部が必ず使いどころを見つけてくれるのだろう。",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"equivalence_classes": [
|
||||
["夕", "タ"],
|
||||
["ニ", "二"],
|
||||
["-", "ー", "一"],
|
||||
["-", "ー", "一", "−"],
|
||||
["ト", "卜"],
|
||||
["ロ", "口"],
|
||||
["カ", "力"],
|
||||
|
||||
260
resource/global/YoStarJP/resource/tasks/Roguelike/JieGarden.json
Normal file
@@ -0,0 +1,260 @@
|
||||
{
|
||||
"JieGarden@Roguelike@CheckLevel": {
|
||||
"text": ["来園記念", "来園", "記念"]
|
||||
},
|
||||
"JieGarden@Roguelike@ConfirmToGiveUp": {
|
||||
"text": ["撤退する"]
|
||||
},
|
||||
"JieGarden@Roguelike@CoppersAnalyzer-CastOCR": {
|
||||
"Doc": "通宝已投出状态识别 - 通宝已投出识别用 roi 为 通宝类型 的 Rect.move(me.roi)",
|
||||
"text": ["振出済"]
|
||||
},
|
||||
"JieGarden@Roguelike@CoppersExchangeFinish": {
|
||||
"Doc": "通宝交换完成后的交换按钮 (用于确认交换操作完成)",
|
||||
"text": ["交換"],
|
||||
"roi": [575, 558, 240, 50]
|
||||
},
|
||||
"JieGarden@Roguelike@CoppersNameOcrReplace": {
|
||||
"Doc": "通宝名称 OCR 识别替换规则 (用于修正 OCR 误识别)",
|
||||
"fullMatch": true,
|
||||
"ocrReplace": [
|
||||
["_+$", ""],
|
||||
["\\.+$", ""],
|
||||
["^(属|雇|層)", "厲"],
|
||||
["^衛", "衡"],
|
||||
["=", "-"],
|
||||
["厲-西の廉貞", "厉-西廉贞"],
|
||||
["厲-北の刺面", "厉-北刺面"],
|
||||
["厲-南に山を見る", "厉-南见山"],
|
||||
["厲-東の欠角", "厉-东缺角"],
|
||||
["衡-奇土金を生ず", "衡-奇土生金"],
|
||||
["衡-水生じ木護る", "衡-水生木护"],
|
||||
["衡-金寒く水.*く", "衡-金寒水衍"],
|
||||
["花-火灼き土沃す", "花-火灼土沃"],
|
||||
["衡-匪風", "衡-匪风"],
|
||||
["衡-霹[靂麗]", "衡-霹雳"],
|
||||
["衡-[旱早]熱", "衡-旱热"],
|
||||
["衡-霧氷", "衡-雾凇"],
|
||||
["花-馳道長し", "花-驰道长"],
|
||||
["花-武人の争い", "花-武人之争"],
|
||||
["花-百業俱に興る", "花-百业俱兴"],
|
||||
["厲-寒窓の志", "厉-寒窗志"],
|
||||
["衡-志遂げんと欲す", "衡-志欲遂"],
|
||||
["衡-[慧意]にして災い[避遅]く", "衡-慧避灾"],
|
||||
["厲-戦にて血流る", "厉-战血流"],
|
||||
["厲-良[弈奔]に遇う", "厉-遇良弈"],
|
||||
["厲-隠市の[憂蔓]", "厉-隐市忧"],
|
||||
["厲-法と律と", "厉-法与律"],
|
||||
["厲-両江の春", "厉-两江春"],
|
||||
["厲-凡物の変", "厉-凡物变"],
|
||||
["厲-人間長く存す", "厉-人间长存"],
|
||||
["厲-神農守る", "厉-神农守"],
|
||||
["厲-奇物を夢みる", "厉-梦奇物"],
|
||||
["厲-一字落つ", "厉-一字落"],
|
||||
["厲-機縁を待つ", "厉-待机缘"],
|
||||
["厲-人間を画く", "厉-画人间"],
|
||||
["厲-狂情を.*にす", "厉-恣狂情"],
|
||||
["NEW_DLC1", "衡-挪移"],
|
||||
["NEW_DLC1", "衡-迅步"],
|
||||
["NEW_DLC1", "厉-生材百相"],
|
||||
["NEW_DLC1", "衡-重铠"],
|
||||
["NEW_DLC1", "厉-火机"],
|
||||
["厲-歳醒める天時", "厉-岁醒天时"],
|
||||
["厲-無[皎校胶]の[昧味]", "厉-无皎之昧"],
|
||||
["衡-豊収を慶ぶ", "衡-庆丰收"],
|
||||
["衡-塞上の月", "衡-塞上月"],
|
||||
["花-力聚めば則ち強し", "花-聚力则强"],
|
||||
["衡-軍[屯中][墾型]す", "衡-军屯垦"],
|
||||
["厲-[碩孤].*を安める", "厉-安硕鼷"],
|
||||
["衡-怪しき金券", "衡-诡意代币"],
|
||||
["厲-礼に合す", "厉-合乎礼"],
|
||||
["花-繭絹を成す", "花-茧成绢"],
|
||||
["厲-黒石伏す", "厉-黑子伏"],
|
||||
["花-平沙の盾", "花-平沙之盾"],
|
||||
["花-火上の竈", "花-火上之灶"],
|
||||
["NEW_DLC1", "花-界园行"],
|
||||
["NEW_DLC1", "衡-债难偿"],
|
||||
["NEW_DLC1", "衡-触锁代币"],
|
||||
["NEW_DLC1", "花-延识镇木"],
|
||||
["厲-山を移すこと難し", "厉-移山难"],
|
||||
["衡-山を移すこと繁わし", "衡-移山繁"],
|
||||
["厲-朝に道を聞く", "厉-朝闻道"],
|
||||
["衡-天下の先", "衡-天下先"],
|
||||
["衡-初めに文有り", "衡-初有文"],
|
||||
["花-道載せること遠し", "花-载道远"],
|
||||
["衡-体運らすに勤しむ", "衡-勤运体"],
|
||||
["花-性情を修む", "花-修性情"],
|
||||
["花-心患うこと無し", "花-心无患"],
|
||||
["花-[鴨陽]爵の金幣", "花-鸭爵金币"],
|
||||
["衡-.*[蒙豪]荒を開く", "衡-鸿蒙开荒"],
|
||||
["花-己が任重し", "花-己任重"],
|
||||
["花-聖詔神を封ず", "花-圣诏封神"],
|
||||
["花-神秘なる商賈", "花-神秘商贾"],
|
||||
["厲-誅邪雷法", "厉-诛邪雷法"],
|
||||
["厲-商路行き難し", "厉-商路难行"],
|
||||
["NEW_DLC1", "花-孜孜不倦"],
|
||||
["衡-虹[霓霞]", "衡-虹霓"],
|
||||
["衡-[霖森]雨", "衡-霖雨"]
|
||||
]
|
||||
},
|
||||
"JieGarden@Roguelike@GetDropSwitch": {
|
||||
"template": ["JieGarden@Roguelike@GetDropSwitch.png", "JieGarden@Roguelike@GetDropSwitch2.png"]
|
||||
},
|
||||
"JieGarden@Roguelike@GiveUpOperation": {
|
||||
"text": ["撤退する"]
|
||||
},
|
||||
"JieGarden@Roguelike@NextLevel": {
|
||||
"ocrReplace": [
|
||||
["雲瓦[亭亨夢幕]", "雲瓦亭"],
|
||||
["汝吾(門)?", "汝吾門"],
|
||||
["見字[祠乱嗣]", "見字祠"]
|
||||
],
|
||||
"text": ["洪陸楼", "山水閣", "雲瓦亭", "汝吾門", "見字祠", "始末陵", "是非境"]
|
||||
},
|
||||
"JieGarden@Roguelike@ReserveRecruitmentVoucherConfirm": {
|
||||
"text": ["保留する"]
|
||||
},
|
||||
"JieGarden@Roguelike@SelectTheme": {
|
||||
"text": ["来園記念", "来園", "記念"]
|
||||
},
|
||||
"JieGarden@Roguelike@StageSafeHouseReuse": {
|
||||
"text": ["セーフハウスを利用する"]
|
||||
},
|
||||
"JieGarden@Roguelike@StrategyChange_mode0": {
|
||||
"text": ["_default", "_boskyPassageDefault"],
|
||||
"ocrReplace": [
|
||||
["洪陸楼", "_default"],
|
||||
["山水閣", "_default"],
|
||||
["雲瓦[亭亨夢幕]", "_default"],
|
||||
["汝吾(門)?", "_default"],
|
||||
["見字[祠乱嗣]", "_default"],
|
||||
["始末陵", "_default"],
|
||||
["是非境", "_boskyPassageDefault"]
|
||||
]
|
||||
},
|
||||
"JieGarden@Roguelike@StrategyChange_mode0_NOT_IN_USE": {
|
||||
"text": ["_aggressive", "_pragmatic", "_default", "_boskyPassageDefault"],
|
||||
"ocrReplace": [
|
||||
["洪陸楼", "_aggressive"],
|
||||
["山水閣", "_aggressive"],
|
||||
["雲瓦[亭亨夢幕]", "_pragmatic"],
|
||||
["汝吾(門)?", "_pragmatic"],
|
||||
["見字[祠乱嗣]", "_default"],
|
||||
["始末陵", "_default"],
|
||||
["是非境", "_boskyPassageDefault"]
|
||||
]
|
||||
},
|
||||
"JieGarden@Roguelike@StrategyChange_mode1": {
|
||||
"text": ["_default", "_restart", "_leaveBoskyPassage"],
|
||||
"ocrReplace": [
|
||||
["洪陸楼", "_default"],
|
||||
["山水閣", "_restart"],
|
||||
["雲瓦[亭亨夢幕]", "_restart"],
|
||||
["汝吾(門)?", "_restart"],
|
||||
["見字[祠乱嗣]", "_restart"],
|
||||
["始末陵", "_restart"],
|
||||
["是非境", "_leaveBoskyPassage"]
|
||||
]
|
||||
},
|
||||
"JieGarden@Roguelike@StrategyChange_mode1-FastPass": {
|
||||
"baseTask": "JieGarden@Roguelike@StrategyChange_mode1",
|
||||
"text": ["_fastPass", "_restart", "_leaveBoskyPassage"],
|
||||
"ocrReplace": [
|
||||
["洪陸楼", "_fastPass"],
|
||||
["山水閣", "_restart"],
|
||||
["雲瓦[亭亨夢幕]", "_restart"],
|
||||
["汝吾(門)?", "_restart"],
|
||||
["見字[祠乱嗣]", "_restart"],
|
||||
["始末陵", "_restart"],
|
||||
["是非境", "_leaveBoskyPassage"]
|
||||
]
|
||||
},
|
||||
"JieGarden@Roguelike@StrategyChange_mode10001": {
|
||||
"baseTask": "JieGarden@Roguelike@StrategyChange_mode1",
|
||||
"text": ["_fastPass", "_restart", "_leaveBoskyPassage"],
|
||||
"ocrReplace": [
|
||||
["洪陸楼", "_fastPass"],
|
||||
["山水閣", "_restart"],
|
||||
["雲瓦[亭亨夢幕]", "_restart"],
|
||||
["汝吾(門)?", "_restart"],
|
||||
["見字[祠乱嗣]", "_restart"],
|
||||
["始末陵", "_restart"],
|
||||
["是非境", "_leaveBoskyPassage"]
|
||||
]
|
||||
},
|
||||
"JieGarden@Roguelike@StrategyChange_mode20001": {
|
||||
"text": ["_default", "_restart", "_boskyPassageDefault"],
|
||||
"ocrReplace": [
|
||||
["洪陸楼", "_default"],
|
||||
["山水閣", "_restart"],
|
||||
["雲瓦[亭亨夢幕]", "_restart"],
|
||||
["汝吾(門)?", "_restart"],
|
||||
["見字[祠乱嗣]", "_restart"],
|
||||
["始末陵", "_restart"],
|
||||
["是非境", "_boskyPassageDefault"]
|
||||
]
|
||||
},
|
||||
"JieGarden@Roguelike@StrategyChange_mode4": {
|
||||
"text": ["_default", "_exit", "_leaveBoskyPassage"],
|
||||
"ocrReplace": [
|
||||
["洪陸楼", "_default"],
|
||||
["山水閣", "_exit"],
|
||||
["雲瓦[亭亨夢幕]", "_exit"],
|
||||
["汝吾(門)?", "_exit"],
|
||||
["見字[祠乱嗣]", "_exit"],
|
||||
["始末陵", "_exit"],
|
||||
["是非境", "_leaveBoskyPassage"]
|
||||
]
|
||||
},
|
||||
"JieGarden@Roguelike@StrategyChange_mode4-FastPass": {
|
||||
"baseTask": "JieGarden@Roguelike@StrategyChange_mode1",
|
||||
"text": ["_fastPass", "_exit", "_leaveBoskyPassage"],
|
||||
"ocrReplace": [
|
||||
["洪陸楼", "_fastPass"],
|
||||
["山水閣", "_exit"],
|
||||
["雲瓦[亭亨夢幕]", "_exit"],
|
||||
["汝吾(門)?", "_exit"],
|
||||
["見字[祠乱嗣]", "_exit"],
|
||||
["始末陵", "_exit"],
|
||||
["是非境", "_leaveBoskyPassage"]
|
||||
]
|
||||
},
|
||||
"JieGarden@Roguelike@StrategyChange_mode6": {
|
||||
"text": ["_default", "_boskyPassageDefault"],
|
||||
"ocrReplace": [
|
||||
["洪陸楼", "_default"],
|
||||
["山水閣", "_default"],
|
||||
["雲瓦[亭亨夢幕]", "_default"],
|
||||
["汝吾(門)?", "_default"],
|
||||
["見字[祠乱嗣]", "_default"],
|
||||
["始末陵", "_default"],
|
||||
["是非境", "_boskyPassageDefault"]
|
||||
]
|
||||
},
|
||||
"JieGarden@Roguelike@StrategyChange_mode7": {
|
||||
"text": ["_default", "_boskyPassageDefault"],
|
||||
"ocrReplace": [
|
||||
["洪陸楼", "_default"],
|
||||
["山水閣", "_default"],
|
||||
["雲瓦[亭亨夢幕]", "_default"],
|
||||
["汝吾(門)?", "_default"],
|
||||
["見字[祠乱嗣]", "_default"],
|
||||
["始末陵", "_default"],
|
||||
["是非境", "_boskyPassageDefault"]
|
||||
]
|
||||
},
|
||||
"JieGarden@RoguelikeEncounterOptionAnalyzer-OptionHeaderBar-Text": {
|
||||
"doc": "识别事件选项文字时,应用于 RegionOCRer 的配置任务,TODO",
|
||||
"roi": [0, 0, 300, 43],
|
||||
"ocrReplace": [
|
||||
["[_—,,\\.]+$", ""],
|
||||
["^[_—,,\\.]+", ""],
|
||||
["^[儡蟹]+", ""],
|
||||
["想要时的", "想要亥时的"],
|
||||
["找委溯果", "找黍溯果"],
|
||||
["睁开双眼.*", "睁开双眼——"],
|
||||
["^饮一口缸中水[,,].*", "饮一口缸中水,祈求好运"],
|
||||
["奉碑行仪.*", "奉碑行仪"]
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -19,7 +19,9 @@
|
||||
["自由自在", "随心所欲"],
|
||||
["先手必勝", "先手必胜"],
|
||||
["攻守一体", "稳扎稳打"],
|
||||
["前線支援", "取长补短"]
|
||||
["前線支援", "取长补短"],
|
||||
["柔軟配置", "灵活部署"],
|
||||
["難攻不落", "坚不可摧"]
|
||||
]
|
||||
},
|
||||
"RoguelikeCustom-HijackSquad": {
|
||||
@@ -48,7 +50,13 @@
|
||||
["破棘成金分隊", "点刺成锭分队"],
|
||||
["擬態学者分隊", "拟态学者分队"],
|
||||
["奇想天外分隊", "异想天开分队"],
|
||||
["専門家分隊", "专业人士分队"]
|
||||
["専門家分隊", "专业人士分队"],
|
||||
["特別行動分隊", "特勤分队"],
|
||||
["高台突破分隊", "高台突破分队"],
|
||||
["地面突破分隊", "地面突破分队"],
|
||||
["観光客分隊", "游客分队"],
|
||||
["司歳台分隊", "司岁台分队"],
|
||||
["天師府分隊", "天师府分队"]
|
||||
]
|
||||
},
|
||||
"RoguelikeRecruitLevel": {
|
||||
@@ -940,7 +948,81 @@
|
||||
["緋染めの上級招集券.*術師", "高级术师招募券(猩红)"],
|
||||
["緋染めの上級招集券.*重装", "高级重装招募券(猩红)"],
|
||||
["緋染めの上級招集券.*医療", "高级医疗招募券(猩红)"],
|
||||
["緋染めの上級招集券.*特殊", "高级特种招募券(猩红)"]
|
||||
["緋染めの上級招集券.*特殊", "高级特种招募券(猩红)"],
|
||||
["鏗金の征鼓", "铿金征鼓"],
|
||||
["旧烽の遺夢", "旧烽遗梦"],
|
||||
["山河に醸す", "酿山河"],
|
||||
["悪食の獣像", "异食兽像"],
|
||||
["「小さな百灶」", "“小百灶”"],
|
||||
["駄獣の砦", "驮垒"],
|
||||
["二人担ぎの御輿", "二抬肩舆"],
|
||||
["ボブの旦那の証文", "鲍老板的凭证"],
|
||||
["臨淵符", "临渊符"],
|
||||
["レイディアンのゲーム機", "电弧的掌机"],
|
||||
["「蒼桐」", "“苍桐”"],
|
||||
["家庭風の炒め物", "家常小炒"],
|
||||
["雲と漆", "云与漆"],
|
||||
["朝夕の墨宝", "旦夕墨宝"],
|
||||
["常夜灯の導き", "长明灯引"],
|
||||
["器鬼拘束縄", "束伥索"],
|
||||
["『拳経三問』", "《拳经三问》"],
|
||||
["春を留む", "留春"],
|
||||
["賞善郎", "赏善郎"],
|
||||
["易錠", "易锁"],
|
||||
["「禍福は糾える縄のごとし」", "“福祸相依”"],
|
||||
["「見花」", "“见花”"],
|
||||
["「擲花」", "“掷花”"],
|
||||
["「摘厲」", "“摘厉”"],
|
||||
["「歳厲」", "“岁厉”"],
|
||||
["「歳花」", "“岁花”"],
|
||||
["「摘衡」", "“摘衡”"],
|
||||
["『雅集』", "《雅集》"],
|
||||
["伝芳の雕版", "传芳雕版"],
|
||||
["伺燭客招集券", "烟烛"],
|
||||
["ロドス緊急救援車", "罗德岛应急救援车"],
|
||||
["『炎国字集』", "《炎国字汇》"],
|
||||
["「阿猛」", "“阿猛”"],
|
||||
["飛錦の戦旗", "飞锦战旌"],
|
||||
["炭の面", "炭面"],
|
||||
["『圍棋入門布局篇』", "《围棋入门布局篇》"],
|
||||
["隠蝶墨", "隐蝶墨"],
|
||||
["おやつの籠", "零嘴背篓"],
|
||||
["「蛍火に照らされる書物」", "“萤灯映牍”"],
|
||||
["飛駄輸送", "飞驮客运"],
|
||||
["錯易錠", "错易锁"],
|
||||
["「擲衡」", "“掷衡”"],
|
||||
["四時丹青筆", "四时丹青毫"],
|
||||
["鬼器室の帳簿", "伥物房账簿"],
|
||||
["墨化の残碑", "墨化残碑"],
|
||||
["円木輪", "圆木轮"],
|
||||
["鏡中の天地", "镜中境"],
|
||||
["契心の鈴", "契心聆铃"],
|
||||
["桂花の杯", "桂花杯"],
|
||||
["おもちゃのパチンコ", "玩具弹弓"],
|
||||
["「成玦」", "“成玦”"],
|
||||
["一束の銭器鬼", "一串钱伥"],
|
||||
["若竹", "嫰竹"],
|
||||
["鏑矢の吹筒", "鸣镝吹筒"],
|
||||
["芸影", "艺影"],
|
||||
["火かき棒", "烧火棍"],
|
||||
["壁の目", "墙眼"],
|
||||
["「摘花」", "“摘花”"],
|
||||
["四方絵具", "四方绘料"],
|
||||
["「歳衡」", "“岁衡”"],
|
||||
["「見衡」", "“见衡”"],
|
||||
["吉運に三有り", "吉运有三"],
|
||||
["古い草履", "故履"],
|
||||
["修行用の雷針", "修习雷针"],
|
||||
["「擲厲」", "“掷厉”"],
|
||||
["引火の獣凧", "引火兽筝"],
|
||||
["忘生の珍瓏", "忘生珍珑"],
|
||||
["月女の面", "月女面"],
|
||||
["ナツメの面", "枣面"],
|
||||
["老人の面", "老者面"],
|
||||
["木塊", "木疙瘩"],
|
||||
["「見厲」", "“见厉”"],
|
||||
["奔獣戦車", "奔兽战车"],
|
||||
["三つ足の金雛", "三足金雏"]
|
||||
]
|
||||
},
|
||||
"Roguelike@ChooseDifficultyConfirm": {
|
||||
@@ -1033,7 +1115,6 @@
|
||||
["叢立.*暗雲", "阴云如聚"],
|
||||
["独り歩む老人", "孤行的老者"],
|
||||
["生存のため", "为了生存"],
|
||||
["苦難の道", "苦路"],
|
||||
["苦.*の道", "苦路"],
|
||||
["思いやり", "设身处地"],
|
||||
["信念", "信念"],
|
||||
@@ -1048,7 +1129,7 @@
|
||||
["(涙|戻)目の.*ッロ(ー)?", "狗眼婆娑"],
|
||||
["ダックパワーテスト", "鸭力测试"],
|
||||
[".*クパワーテス.*", "鸭力测试"],
|
||||
["暇潰し", "打发时间"],
|
||||
["[暇眼]潰し", "打发时间"],
|
||||
["仕事への情熱は", "工作热情"],
|
||||
["仕事への情熱は?", "工作热情?"],
|
||||
["ビジネス帝国?", "商业帝国?"],
|
||||
@@ -1175,7 +1256,55 @@
|
||||
["消えた……", "消失......"],
|
||||
["((似)|(以))て非なるもの", "似是而非"],
|
||||
["虚無の前兆", "空无前兆"],
|
||||
["一か八か", "孤注一掷"]
|
||||
["一か八か", "孤注一掷"],
|
||||
["リュー", "柳儿"],
|
||||
["見ゆる所", "所见"],
|
||||
["[暫曹]亭に入る", "入暂亭"],
|
||||
["(ひと.*釣|岸辺で釣)", "孤钓"],
|
||||
["火の祭(祀)?", "火祀"],
|
||||
["[饕餮矍餐饗費]{1,2}の回廊", "饕餮廊"],
|
||||
["片隅に落ち着く", "偏安"],
|
||||
["[地也]を鎮めるもの", "地镇"],
|
||||
["分か[れ矛]道", "岔路"],
|
||||
["形は存すれど意味を失う", "存形失意"],
|
||||
["天円地方", "天圆地方"],
|
||||
["助言", "点拨"],
|
||||
["地に擲ちて声有り", "掷地有声"],
|
||||
["人足[ら5]ぬ", "三缺一"],
|
||||
["[祠耐]の入(り)?口", "祠堂口"],
|
||||
["煙火、天に満.*", "烟火漫天"],
|
||||
["[印日口]影集[め秒]", "集印"],
|
||||
["伝令", "传讯"],
|
||||
["石の山", "石山"],
|
||||
["出会い", "相会"],
|
||||
["燭堂", "烛堂"],
|
||||
["棋を執る", "执棋"],
|
||||
["海からの来客", "海中来客"],
|
||||
["実[りゆ]の園", "硕果园"],
|
||||
["取り立て夜[叉又]", "催债鬼夜叉"],
|
||||
["夕江にて対擂す", "夕江对擂"],
|
||||
["観者自在", "观者自在"],
|
||||
["まんまるな財神", "滚圆财神"],
|
||||
["ペッロー小僧", "鼓上佩洛"],
|
||||
["[自白]然の要塞", "天险"],
|
||||
["永遠のダック帝", "千古鸭帝"],
|
||||
["来るもの拒まず", "来者不拒"],
|
||||
["燭堂", "烛堂"],
|
||||
[".*ボブ福来商店.{0,2}$", "“鲍老板连锁”"],
|
||||
["盗人の老羽獣", "老贼羽"],
|
||||
[".*に応じて生ず", "应“蕴”而生"],
|
||||
["掌(灯|火.*)人と[引弓]燭人", "掌灯与引烛"],
|
||||
["熊面金[剛岡]", "护鸭金刚"],
|
||||
["球中天", "同心"],
|
||||
["楡の蝶", "榆蝶"],
|
||||
["招かれざる客", "不速之客"],
|
||||
["因を種えて果を得る", "种因得果"],
|
||||
["生命の兆し", "生机"],
|
||||
["百氏の乱[^の]", "百氏之乱"],
|
||||
["筆を置く", "收笔"],
|
||||
["友との邂逅", "会友"],
|
||||
["(百年煙を焚き|百年涙を化し|百年痕を累ね)", "珀"],
|
||||
["[禳確]解", "禳解"]
|
||||
],
|
||||
"roi": [0, 320, 725, 310]
|
||||
},
|
||||
|
||||
@@ -132,7 +132,7 @@
|
||||
["^テキサス", "德克萨斯"],
|
||||
["ズィマー", "凛冬"],
|
||||
["ヴィグナ", "红豆"],
|
||||
["(ス)?カベンジャ(ー)?", "清道夫"],
|
||||
["(ス)?カベンジ(ャ)?(ー)?", "清道夫"],
|
||||
["クーリエ", "讯使"],
|
||||
["(プ)?リュム", "翎羽"],
|
||||
["バ(ニ|エ)ラ", "香草"],
|
||||
@@ -294,7 +294,7 @@
|
||||
["聖徒の手", "圣徒之手"],
|
||||
["高信頼性バッテリー", "可靠电池"],
|
||||
["補強装置", "加固装置"],
|
||||
["(ゴ)?ールデングロ(ー)?", "澄闪"],
|
||||
["(ゴ)?ールデング(ロ)?(ー)?", "澄闪"],
|
||||
["主なき財宝", "无主的财富"],
|
||||
["(帰)?溟スペクタ(ー)?", "归溟幽灵鲨"],
|
||||
["ルーメン", "流明"],
|
||||
@@ -899,7 +899,7 @@
|
||||
["聖徒像ごっこ", "圣徒像扮演者"],
|
||||
["夜行笠モジュール", "夜行斗篷模块"],
|
||||
["夜行鉤爪モジュール", "夜行钩爪模块"],
|
||||
["新約エクシア", "新约能天使"],
|
||||
["(新)?約エクシア", "新约能天使"],
|
||||
["ミス.*クリスティ", "Miss.Christine"],
|
||||
["サンクタ.*ミ[キサ]", "信仰搅拌机"],
|
||||
["天工夜行セット", "天工夜行套装"],
|
||||
@@ -914,7 +914,18 @@
|
||||
["ティッピ", "蒂比"],
|
||||
["トラゴーディア", "酒神"],
|
||||
["(司|霆|甕|理|垂).*レイズ", "司霆惊蛰"],
|
||||
["レコードキーパー", "录武官"]
|
||||
["レコードキーパー", "录武官"],
|
||||
["聚宝斎", "聚宝斋"],
|
||||
["明燭台", "明烛台"],
|
||||
["奇妙なひょうたん", "怪葫芦"],
|
||||
["鉄のひょうたん", "铁葫芦"],
|
||||
["お宝ひょうたん", "宝葫芦"],
|
||||
["彫鬼", "雕伥"],
|
||||
["サントラ", "桑特拉"],
|
||||
["ダイウ", "戴乌"],
|
||||
["レイディアン", "电弧"],
|
||||
["サイガ", "赛柯"],
|
||||
["遺物中枢", "遗物中枢"]
|
||||
]
|
||||
},
|
||||
"GameStartCheckResourceOCR": {
|
||||
@@ -1313,7 +1324,70 @@
|
||||
["ライン生命の警備体制", "莱茵卫士"],
|
||||
["機動隊", "机动队"],
|
||||
["拒絶は許さぬ", "不容拒绝"],
|
||||
["生い茂る密林", "丛林密布"]
|
||||
["生い茂る密林", "丛林密布"],
|
||||
["ケイ素器鬼の宴", "硅基伥的宴席"],
|
||||
["逸を以て労を待つ", "以逸待劳"],
|
||||
["鈴なりの果実", "硕果累累"],
|
||||
["劫罰", "劫罚"],
|
||||
["良いカモ", "易易鸭鸭"],
|
||||
["完全制御不能", "彻底失控"],
|
||||
["商売禁止", "循循善诱"],
|
||||
["きらきら輝いて", "闪闪发光"],
|
||||
["底なし", "源源不断"],
|
||||
["憤怒", "愠怒"],
|
||||
["局面打破", "破局"],
|
||||
["貪欲にして妄執", "贪妄"],
|
||||
["我を忘れる", "忘形"],
|
||||
["器頼み", "凭器"],
|
||||
["迷い", "迷惘"],
|
||||
["人により鎮める", "人镇"],
|
||||
["灼熱の炎", "炎灼"],
|
||||
["邙山町郷土誌", "邙山镇地方志"],
|
||||
["ささやかな謝礼", "薄礼一份"],
|
||||
["教訓とせず", "不鉴"],
|
||||
["退場検査", "离域检查"],
|
||||
["闇討ちは防ぎ難し", "暗箭难防"],
|
||||
["輝かしい戦功", "峥嵘战功"],
|
||||
["舞台への出演", "赶场戏班"],
|
||||
["山海の争い", "山海必争"],
|
||||
["落葉の帰る場所", "落叶归根"],
|
||||
["文字を知る", "识文"],
|
||||
["ひたすらな前進", "长驱不复"],
|
||||
["邪気払い", "去晦"],
|
||||
["後方に山、前方に水", "背山面水"],
|
||||
["守りしものは義なり", "所守者,义"],
|
||||
["甘い誘い", "啖之以利"],
|
||||
["教え有りて類無し", "有教无类"],
|
||||
["飛来する災い", "飞来横祸"],
|
||||
["老練の役者", "老戏骨"],
|
||||
["まともな商売", "正经生意"],
|
||||
["露店市場へ", "赶集"],
|
||||
["赴隕", "赴陨"],
|
||||
["謗天", "谤天"],
|
||||
["崖の下の器鬼", "为崖作伥"],
|
||||
["高みの見物", "作壁上观"],
|
||||
["心ここにあらず", "神游天外"],
|
||||
[".*獣の巣穴", "狡鼷三窟"],
|
||||
["過去の沈黙", "往事喑哑"],
|
||||
["青嶺は語らず", "青山不语"],
|
||||
["歳を謀る者", "谋岁者"],
|
||||
["歳破りし陣を.*る", "破岁阵祀"],
|
||||
["教え導く", "点化"],
|
||||
["仁・義・武", "仁·义·武"],
|
||||
["夕娥の記憶", "夕娥忆"],
|
||||
["月華の寒気", "月华寒"],
|
||||
["奇譚", "奇谭"],
|
||||
["食い意地", "贪饵"],
|
||||
["地に四難有り", "地有四难"],
|
||||
["煙火に成らず", "不成烟火"],
|
||||
["生ける百面相", "生百相"],
|
||||
["喜びは駄獣より来たる", "喜从驮来"],
|
||||
["古き文字は煙の如し", "昔字如烟"],
|
||||
["夕江にて対擂す", "夕江对擂"],
|
||||
["強盗と泥棒", "明抢暗偷"],
|
||||
["剣・刀・矛", "剑·刀·矛"],
|
||||
["明瞭", "分明"],
|
||||
["退廃の音", "靡靡之音"]
|
||||
]
|
||||
},
|
||||
"BattleQuickFormationFilter-Cost": {
|
||||
|
||||
|
Before Width: | Height: | Size: 797 B After Width: | Height: | Size: 807 B |
|
After Width: | Height: | Size: 7.7 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 6.1 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 29 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 9.8 KiB |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 44 KiB |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 3.5 KiB |
|
After Width: | Height: | Size: 8.8 KiB |
|
After Width: | Height: | Size: 9.8 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 8.7 KiB |
|
After Width: | Height: | Size: 6.5 KiB |