@genshin-db/tcg
Version:
Genshin Impact Trading Card Game JSON data with an API for searching the data in all in-game languages.
22 lines (16 loc) • 505 B
TypeScript
declare module "@genshin-db/tcg" {
export interface TcgStatusEffects {
id: number;
name: string; // translated
statustypetext: string; // translated
cardtype: string; // enum
cardtypetext: string; // translated
tags: string[]; // enum
description: string; // translated
descriptionraw: string; // translated
descriptionreplaced: string; // translated
countingtype?: string; // enum
bufftype?: string; // enum. determines visual fx?
version: string;
}
}