mirror of
https://github.com/TheFunny/ArisuAutoSweeper
synced 2026-01-07 16:15:13 +00:00
Compare commits
10 Commits
a621299aea
...
9e5fd34b79
| Author | SHA1 | Date | |
|---|---|---|---|
| 9e5fd34b79 | |||
| 5487338dc6 | |||
| e5a914e80f | |||
| f21a97e08d | |||
| b4c47e2de2 | |||
| 34208763aa | |||
| c3354cf4f5 | |||
| 81abba0270 | |||
| acea188931 | |||
| b0621b48e6 |
11
README.en.md
11
README.en.md
@ -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
|
||||||
|
|
||||||
|
|||||||
@ -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) 为本项目设计的图标。
|
||||||
|
|||||||
@ -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",
|
||||||
|
|||||||
@ -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()
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user