🐛 修复查询忍的毕业度计算问题

This commit is contained in:
Wuyi无疑 2023-03-02 21:22:12 +08:00
parent 7b648b8ee8
commit 60e4907a9c
5 changed files with 4 additions and 4 deletions

File diff suppressed because one or more lines are too long

View File

@ -12,7 +12,7 @@ from ...version import __version__
ADDRESS = { ADDRESS = {
'enka': 'https://enka.network', 'enka': 'https://enka.network',
'microgg': 'https://profile.microgg.cn', 'microgg': 'http://profile.microgg.cn',
} }

View File

@ -59,7 +59,7 @@ SAMPLE = {
'埃洛伊': 'Q伤害', '埃洛伊': 'Q伤害',
'申鹤': 'atk', '申鹤': 'atk',
'云堇': 'def', '云堇': 'def',
'久岐忍': 'E越祓草轮治疗量', '久岐忍': ['E越祓草轮治疗量', 'A元素反应(超绽放)'],
'神里绫人': 'E一段瞬水剑伤害', '神里绫人': 'E一段瞬水剑伤害',
'柯莱': 'Q跃动伤害(蔓激化)', '柯莱': 'Q跃动伤害(蔓激化)',
'多莉': 'Q持续治疗量', '多莉': 'Q持续治疗量',

View File

@ -9,7 +9,7 @@ from aiohttp.client import ClientSession
from .download_url import PATH_MAP, download_file from .download_url import PATH_MAP, download_file
MINIGG_FILE = 'https://file.microgg.cn/KimigaiiWuyi/resource/' MINIGG_FILE = 'http://file.microgg.cn/KimigaiiWuyi/resource/'
NAMECARD_FILE = MINIGG_FILE + 'char_namecard' NAMECARD_FILE = MINIGG_FILE + 'char_namecard'
SIDE_FILE = MINIGG_FILE + 'char_side' SIDE_FILE = MINIGG_FILE + 'char_side'
STAND_FILE = MINIGG_FILE + 'char_stand' STAND_FILE = MINIGG_FILE + 'char_stand'