boardgame-core/src/samples/slay-the-spire-like/data/statusCardDesert.csv.d.ts

15 lines
453 B
TypeScript

import type { EffectDesert } from './effectDesert.csv';
type StatusCardDesertTable = readonly {
readonly id: string;
readonly name: string;
readonly desc: string;
readonly unplayable: boolean;
readonly effects: readonly (readonly [target: "self", effect: EffectDesert, value: number])[];
}[];
export type StatusCardDesert = StatusCardDesertTable[number];
declare function getData(): StatusCardDesertTable;
export default getData;