genshin-db
Version:
Genshin Impact v5.5 JSON data. Search and get results in all in-game languages! Sources from the fandom wiki and GenshinData repo.
25 lines (19 loc) • 502 B
TypeScript
declare module "genshin-db" {
export interface TcgDetailedRules {
id: number;
name: string; // translated
rules: TcgRule[];
version: string;
}
export interface TcgRule {
reaction?: {
elementone: string; // enum
elementtwo: string; // enum
};
title: string; // translated. can be empty string.
titleraw: string; // translated. can be empty string.
content: string; // translated
contentraw: string; // translated
filename_image?: string;
}
}