1
0
mirror of https://github.com/TheFunny/ArisuAutoSweeper synced 2026-01-07 16:15:13 +00:00

Compare commits

..

10 Commits

4 changed files with 19 additions and 6 deletions

View File

@ -1,6 +1,6 @@
<img width="150" height="150" align="left" style="float: left; margin: 0 10px 0 0;" alt="AAS icon" src="docs/resources/aas_icon.svg"/> <img width="150" height="150" align="left" style="float: left; margin: 0 10px 0 0;" alt="AAS icon" src="docs/resources/aas_icon.svg"/>
# ArisuAutoScript # ArisuAutoSweeper
**Blue Archive Automation Script** **Blue Archive Automation Script**
@ -23,7 +23,14 @@ _Currently only supports JP server._
- [AzurLaneAutoScript](https://github.com/LmeSzinc/AzurLaneAutoScript): Azur Lane auto script - [AzurLaneAutoScript](https://github.com/LmeSzinc/AzurLaneAutoScript): Azur Lane auto script
- [StarRailCopilot](https://github.com/LmeSzinc/StarRailCopilot): A bot for Honkai: Star Rail, based on the next - [StarRailCopilot](https://github.com/LmeSzinc/StarRailCopilot): A bot for Honkai: Star Rail, based on the next
generation of ALAS framework. generation of ALAS framework
Some Blue Archive auto scripts:
- [BAAuto](https://github.com/RedDeadDepresso/BAAuto): Blue Archive Automation Script
- [BlueArchiveAutoScript](https://github.com/pur1fying/blue_archive_auto_script): BAAS, used to implement Blue Archive
automation
- [MBA](https://github.com/MaaAssistantArknights/MBA): BA assistant based on the new architecture of MAA
## Acknowledgements ## Acknowledgements

View File

@ -1,6 +1,6 @@
<img width="150" height="150" align="left" style="float: left; margin: 0 10px 0 0;" alt="AAS icon" src="docs/resources/aas_icon.svg"/> <img width="150" height="150" align="left" style="float: left; margin: 0 10px 0 0;" alt="AAS icon" src="docs/resources/aas_icon.svg"/>
# ArisuAutoScript # ArisuAutoSweeper
**蔚蓝档案自动化脚本** **蔚蓝档案自动化脚本**
@ -24,6 +24,12 @@ _目前仅支持日服。_
- [AzurLaneAutoScript](https://github.com/LmeSzinc/AzurLaneAutoScript): 碧蓝航线自动化脚本 - [AzurLaneAutoScript](https://github.com/LmeSzinc/AzurLaneAutoScript): 碧蓝航线自动化脚本
- [StarRailCopilot](https://github.com/LmeSzinc/StarRailCopilot): 崩坏星穹铁道脚本基于下一代Alas框架 - [StarRailCopilot](https://github.com/LmeSzinc/StarRailCopilot): 崩坏星穹铁道脚本基于下一代Alas框架
一些蔚蓝档案脚本:
- [BAAuto](https://github.com/RedDeadDepresso/BAAuto): 蔚蓝档案自动脚本
- [BlueArchiveAutoScript](https://github.com/pur1fying/blue_archive_auto_script): BAAS用于实现蔚蓝档案自动化
- [MBA](https://github.com/MaaAssistantArknights/MBA): 基于 MAA 全新架构的 BA 小助手
## 鸣谢 ## 鸣谢
感谢 [6bir](https://github.com/6bir) 为本项目设计的图标。 感谢 [6bir](https://github.com/6bir) 为本项目设计的图标。

View File

@ -27,7 +27,7 @@
"help": "" "help": ""
}, },
"Circle": { "Circle": {
"name": "Circle", "name": "Club",
"help": "" "help": ""
}, },
"TacticalChallenge": { "TacticalChallenge": {
@ -196,7 +196,7 @@
}, },
"Touch": { "Touch": {
"name": "Student Interaction", "name": "Student Interaction",
"help": "Auto detect intractable student and click" "help": "Auto detect intractable student and tap"
}, },
"AutoAdjust": { "AutoAdjust": {
"name": "Interface Auto Adjustment", "name": "Interface Auto Adjustment",

View File

@ -376,7 +376,7 @@ def add_css(filepath):
def _read(path): def _read(path):
with open(path, "r") as f: with open(path, "r", encoding="utf-8") as f:
return f.read() return f.read()