♻️ 剔除WIKI JSON冗余数据,添加材料数据

#139
This commit is contained in:
目棃
2024-12-31 11:50:11 +08:00
parent f0d48e866c
commit 70615dd79b
13 changed files with 6608 additions and 33056 deletions

View File

@@ -78,7 +78,7 @@ declare namespace TGApp.App.Character {
* @property {TGApp.Plugins.Hutao.Character.RhiFetter[]} stories 故事
* @return WikiItem
*/
interface WikiItem {
type WikiItem = {
id: number;
name: string;
title: string;
@@ -88,12 +88,7 @@ declare namespace TGApp.App.Character {
camp: string;
constellation: string;
birth: string;
cv: {
cn: string;
jp: string;
en: string;
kr: string;
};
cv: { cn: string; jp: string; en: string; kr: string };
};
star: number;
element: string;
@@ -103,5 +98,5 @@ declare namespace TGApp.App.Character {
constellation: TGApp.Plugins.Hutao.Character.RhisdTalent[];
talks: TGApp.Plugins.Hutao.Character.RhiFetter[];
stories: TGApp.Plugins.Hutao.Character.RhiFetter[];
}
};
}