mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2026-04-04 07:05:07 +08:00
feat(icons): 添加成就系列图标并渲染
* 目前缺失 id 为38的图标
This commit is contained in:
@@ -41,7 +41,7 @@ export interface Achievement {
|
||||
* @property {number} card - 成就系列奖励,这边是名片 ID
|
||||
* @description 像是天地万象这种一直更新的成就系列,这边的 version 可能为 undefined
|
||||
* @property {string} version - 成就系列版本
|
||||
* @property {string} icon - 成就系列图标 todo
|
||||
* @property {string} icon - 成就系列图标
|
||||
* @return AchievementSeries
|
||||
*/
|
||||
export interface AchievementSeries {
|
||||
@@ -50,7 +50,7 @@ export interface AchievementSeries {
|
||||
name: string;
|
||||
card?: number;
|
||||
version?: string;
|
||||
icon?: string;
|
||||
icon: string;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -65,7 +65,7 @@ export interface AchievementSeries {
|
||||
* @property {number} total_count - 成就系列包含的成就数
|
||||
* @property {number} completed_count - 成就系列已完成的成就数
|
||||
* @property {number} card - 成就系列奖励,这边是名片 ID todo
|
||||
* @property {string} icon - 成就系列图标 todo
|
||||
* @property {string} icon - 成就系列图标
|
||||
* @return SeriesMap
|
||||
*/
|
||||
export interface SeriesMap {
|
||||
@@ -76,7 +76,7 @@ export interface SeriesMap {
|
||||
total_count: number;
|
||||
completed_count: number;
|
||||
card?: number;
|
||||
icon?: string;
|
||||
icon: string;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user