✏️ 部分武器(芙宁娜专武)可能有两个故事

This commit is contained in:
BTMuli
2023-12-15 18:52:36 +08:00
parent a9f80da053
commit 6e6648f652

View File

@@ -18,7 +18,7 @@ declare namespace TGApp.App.Weapon {
* @property {string} icon - 武器图标 * @property {string} icon - 武器图标
* @return WikiBriefInfo * @return WikiBriefInfo
*/ */
export interface WikiBriefInfo { interface WikiBriefInfo {
id: number; id: number;
contentId: number; contentId: number;
name: string; name: string;
@@ -39,8 +39,8 @@ declare namespace TGApp.App.Weapon {
* @property {number} star 武器星级 * @property {number} star 武器星级
* @property {string} weapon 武器类型 * @property {string} weapon 武器类型
* @property {TGApp.App.Calendar.Material[]} materials 武器培养材料 * @property {TGApp.App.Calendar.Material[]} materials 武器培养材料
* @property {TGACore.Components.Weapon.RhiAffix} affix 精炼描述 * @property {TGApp.Plugins.Hutao.Weapon.RhiAffix} affix 精炼描述
* @property {string} story 武器故事 * @property {string|string[]} story 武器故事
* @return WikiItem * @return WikiItem
*/ */
interface WikiItem { interface WikiItem {
@@ -50,7 +50,7 @@ declare namespace TGApp.App.Weapon {
star: number; star: number;
weapon: string; weapon: string;
materials: TGApp.App.Calendar.Material[]; materials: TGApp.App.Calendar.Material[];
affix: TGACore.Components.Weapon.RhiAffix; affix: TGApp.Plugins.Hutao.Weapon.RhiAffix;
story: string; story: string | string[];
} }
} }