import { move } from "./moveDefs.ts"; export interface card { maneuvers: move[]; attacks: string[]; penalties: string[]; type: 'action' | 'win condition' | 'wild card' | 'sudden death'; needsEffect?: boolean; }