Skip to content

Commit

Permalink
新增千织参考配置;
Browse files Browse the repository at this point in the history
v0.8.0发布,支持莫娜占卜铺格式导出mona.json
  • Loading branch information
SkeathyTomas committed Mar 23, 2024
1 parent b2e6c36 commit b1ac12d
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
6. 选中某个贴图结果,使用快捷键`Ctrl+Z`删除该贴图;使用全局快捷键`Ctrl+Shift+Z`删除所有贴图,可进行新一批圣遗物的评估。
7. 支持对选中的圣遗物(主面板跟随更新)进行手动修正识别结果,点击`确认修改`可保存修改结果,不过我觉得还是再点一次右键比较方便。
8. 当前屏幕上的贴图结果可通过取一个名称(比如「火伤杯」),再通过保存按钮本地储存(`文档/keqing/archive.json`),可从下拉框中选择已保存的结果并贴图展示(包括下次打开程序)。
9. 使用背包模式保存圣遗物方案(取名为对应圣遗物套装名称时)支持`文档/keqing/mona.json`格式导出,可用于[莫娜占卜铺](https://www.mona-uranai.com/)网站导入分析圣遗物。

![主程序示意](https://raw.githubusercontent.com/SkeathyTomas/img/main/img/20221212182324.png)

Expand Down
5 changes: 3 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import sys, os, requests, json, qdarktheme
import sys, os, requests, json
import qdarktheme
from pynput import keyboard

import doc, location, ocr, score
Expand Down Expand Up @@ -445,7 +446,7 @@ def on_release(key):

def main():
global myappid
myappid = 'v0.7.4'
myappid = 'v0.8.0'

# 任务栏图标问题
try:
Expand Down
2 changes: 1 addition & 1 deletion app.spec
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ coll = COLLECT(
strip=False,
upx=True,
upx_exclude=[],
name='keqing-0.7.4',
name='keqing-0.8.0',
)
45 changes: 45 additions & 0 deletions src/character.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,15 @@
"元素精通": 0,
"元素充能效率": 0.75
},
"闲云": {
"生命值": 0,
"攻击力": 1,
"防御力": 0,
"暴击率": 1,
"暴击伤害": 1,
"元素精通": 0,
"元素充能效率": 0.55
},
"----火----": {},
"托马": {
"生命值": 1,
Expand Down Expand Up @@ -272,6 +281,15 @@
"元素精通": 0,
"元素充能效率": 0
},
"嘉明": {
"生命值": 0,
"攻击力": 0.75,
"防御力": 0,
"暴击率": 1,
"暴击伤害": 1,
"元素精通": 0.75,
"元素充能效率": 0
},
"----水----": {},
"旅行者-水": {
"生命值": 0,
Expand Down Expand Up @@ -626,6 +644,15 @@
"元素精通": 0.75,
"元素充能效率": 0
},
"夏沃蕾": {
"生命值": 0.75,
"攻击力": 0.75,
"防御力": 0,
"暴击率": 1,
"暴击伤害": 1,
"元素精通": 0,
"元素充能效率": 0
},
"----岩----": {},
"旅行者-岩": {
"生命值": 0,
Expand Down Expand Up @@ -699,6 +726,24 @@
"元素精通": 0,
"元素充能效率": 0.7
},
"娜维娅": {
"生命值": 0,
"攻击力": 0.75,
"防御力": 0,
"暴击率": 1,
"暴击伤害": 1,
"元素精通": 0,
"元素充能效率": 0
},
"千织": {
"生命值": 0,
"攻击力": 0.5,
"防御力": 0.9,
"暴击率": 1,
"暴击伤害": 1,
"元素精通": 0,
"元素充能效率": 0
},
"----草----": {},
"旅行者-草": {
"生命值": 0,
Expand Down

0 comments on commit b1ac12d

Please sign in to comment.