@genshin-db/tcg
Version:
Genshin Impact Trading Card Game JSON data with an API for searching the data in all in-game languages.
18 lines (16 loc) • 498 B
TypeScript
declare module "@genshin-db/tcg" {
export interface Animal {
id: number; // archive id
name: string;
dupealias?: string; // Vietnamese Vịt
description: string;
categoryType: 'SUBTYPE_ANIMAL' | 'SUBTYPE_AVIARY' | 'SUBTYPE_CRITTER' | 'SUBTYPE_FISH'; // enum
categoryText: string; // translated
countType: 'COUNT_TYPE_CAPTURE' | 'COUNT_TYPE_FISH' | 'COUNT_TYPE_NONE'; // enum
sortOrder: number;
images: {
filename_icon: string;
};
version: string;
}
}