🐛 武器图鉴路径

This commit is contained in:
惜月 2023-02-13 11:47:41 +08:00 committed by GitHub
parent df966e8d5d
commit 749e3ed7d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -271,7 +271,7 @@ async def _(bot: Bot, event: MessageEvent, state: T_State, type: str = Arg('type
if type in {'材料', '攻略', '图鉴'}:
type = f'{temp_type}图鉴' if temp_type != '角色' else f'{temp_type}{type}'
if type in {'七圣召唤图鉴', '武器图鉴'}:
final_name = (await get_atlas_full_path(final_name, 'card' if type == '七圣召唤图鉴' else 'weapon')).replace('/card/', '').rstrip('.png')
final_name = (await get_atlas_full_path(final_name, 'card' if type == '七圣召唤图鉴' else 'weapon'))
try:
await total_wiki.finish(
MessageSegment.image(API[type].format(proxy=config.github_proxy, name=final_name)))
@ -339,8 +339,8 @@ async def _(state: T_State, matches: dict = Arg('matches'), choice: str = ArgPla
type = f'{key}图鉴' if key != '角色' else f'{key}{type}'
break
if final_name:
if type == '七圣召唤图鉴':
final_name = (await get_atlas_full_path(final_name, 'card')).replace('/card/', '').rstrip('.png')
if type in {'七圣召唤图鉴', '武器图鉴'}:
final_name = (await get_atlas_full_path(final_name, 'card' if type == '七圣召唤图鉴' else 'weapon'))
try:
await total_wiki.finish(
MessageSegment.image(API[type].format(proxy=config.github_proxy, name=final_name)))

View File

@ -7,7 +7,7 @@ API: Dict[str, str] = {
'角色材料': '{proxy}https://raw.githubusercontent.com/Nwflower/genshin-atlas/master/material%20for%20role/{name}.png',
'收益曲线': '{proxy}https://raw.githubusercontent.com/CMHopeSunshine/LittlePaimonRes/main/genshin_guide/curve/{name}.jpg',
'参考面板': '{proxy}https://raw.githubusercontent.com/CMHopeSunshine/LittlePaimonRes/main/genshin_guide/panel/{name}.jpg',
'武器图鉴': '{proxy}https://raw.githubusercontent.com/Nwflower/genshin-atlas/master/{name}.png',
'武器图鉴': '{proxy}https://raw.githubusercontent.com/Nwflower/genshin-atlas/master/{name}',
'圣遗物图鉴': '{proxy}https://raw.githubusercontent.com/Nwflower/genshin-atlas/master/artifact/{name}.png',
'原魔图鉴': '{proxy}https://raw.githubusercontent.com/CMHopeSunshine/GenshinWikiMap/master/results/monster_map/{name}.jpg',
'特产图鉴': '{proxy}https://raw.githubusercontent.com/Nwflower/genshin-atlas/master/specialty/{name}.png',