20 lines
No EOL
372 B
TypeScript
20 lines
No EOL
372 B
TypeScript
import { CardRarity } from "../constants/CardRarity.js";
|
|
|
|
export interface SeriesMetadata {
|
|
id: number,
|
|
name: string,
|
|
cards: CardMetadata[],
|
|
}
|
|
|
|
export interface CardMetadata {
|
|
id: string,
|
|
name: string,
|
|
type: CardRarity,
|
|
path: string,
|
|
subseries?: string,
|
|
}
|
|
|
|
export interface DropResult {
|
|
series: SeriesMetadata,
|
|
card: CardMetadata,
|
|
} |