Update supply events
This commit is contained in:
@@ -34,3 +34,61 @@ export interface SupplyEventData {
|
||||
id: string
|
||||
}[]
|
||||
}
|
||||
|
||||
export const superstringCnKeyword = '超弦空间'
|
||||
export const maCnKeyword = '战场'
|
||||
|
||||
export const bosses = [
|
||||
{
|
||||
id: 'ksm',
|
||||
cnKeyword: '八重霞',
|
||||
},
|
||||
{
|
||||
id: 'qksm',
|
||||
cnKeyword: '科斯魔',
|
||||
},
|
||||
{
|
||||
id: 'bke',
|
||||
cnKeyword: '辉骑士 月魄',
|
||||
},
|
||||
{
|
||||
id: 'tank',
|
||||
cnKeyword: 'MHT-3B 天堂使者',
|
||||
},
|
||||
{
|
||||
id: 'husk',
|
||||
cnKeyword: '虚树神骸 虚无主义',
|
||||
},
|
||||
{
|
||||
id: 'husk2',
|
||||
cnKeyword: '虚树神骸 虚无主义',
|
||||
},
|
||||
{
|
||||
id: 'husk-sss',
|
||||
cnKeyword: '虚树神骸 虚无主义',
|
||||
},
|
||||
{
|
||||
id: 'qt',
|
||||
cnKeyword: '托纳提乌',
|
||||
},
|
||||
{
|
||||
id: 'jz',
|
||||
cnKeyword: '地藏御魂',
|
||||
},
|
||||
{
|
||||
id: 'ofg',
|
||||
cnKeyword: '伪神 奥托',
|
||||
},
|
||||
{
|
||||
id: 'pvt',
|
||||
cnKeyword: '帕凡提',
|
||||
},
|
||||
{
|
||||
id: 'hod',
|
||||
cnKeyword: '支配之律者 乌合之众',
|
||||
},
|
||||
{
|
||||
id: 'wolf',
|
||||
cnKeyword: '奔狼的领主',
|
||||
},
|
||||
]
|
||||
|
||||
@@ -23,7 +23,7 @@ const BossSearchPage = ({}: BossSearchPageProps) => {
|
||||
return (
|
||||
<img
|
||||
key={item}
|
||||
src={`https://upload-os-bbs.mihoyo.com/game_record/honkai3rd/global/SpriteOutput/OpenWorld/QuestBossIcon/DG_${item}_M01.png`}
|
||||
src={`https://upload-os-bbs.mihoyo.com/game_record/honkai3rd/global/SpriteOutput/OpenWorld/QuestBossIcon/QT_${item}.png`}
|
||||
/>
|
||||
)
|
||||
})
|
||||
|
||||
@@ -32,6 +32,15 @@ export function listVersionData(locale?: string): VersionData[] {
|
||||
}
|
||||
})
|
||||
}),
|
||||
supplyEvents: version.supplyEvents.map((supplyEvent: any) => {
|
||||
return {
|
||||
...supplyEvent,
|
||||
name:
|
||||
locale === 'ko-KR' && supplyEvent.krName != null
|
||||
? supplyEvent.krName
|
||||
: supplyEvent.name,
|
||||
}
|
||||
}),
|
||||
}
|
||||
})
|
||||
.sort((a: any, b: any) => {
|
||||
|
||||
Reference in New Issue
Block a user