diff --git a/src/interfaces/card.ts b/src/interfaces/card.ts index 3e2ce11..4295738 100644 --- a/src/interfaces/card.ts +++ b/src/interfaces/card.ts @@ -8,28 +8,29 @@ import { Set } from './set'; import { TCGPlayer } from './tcgplayer'; export interface Card { - abilities: Ability[]; - artist: string; - ancientTrait?: AncientTrait; - attacks: Attack[]; - convertedRetreatCost: number; - evolvesFrom: string; - flavorText: string; - hp: string; id: string; - images: CardImage; - legalities: ILegality; name: string; - nationalPokedexNumbers: number[]; - number: string; - rarity: string; - resistances: Resistance[]; - retreatCost: string[]; - rules: string[]; - set: Set; - subtypes: string[]; supertype: string; + subtypes: string[]; + hp?: string; + types?: string[]; + evolesFrom?: string; + evolvesTo?: string[]; + rules?: string[]; + ancientTrait?: AncientTrait; + abilities?: Ability[]; + attacks?: Attack[]; + weaknesses?: Weakness[]; + resistances?: Resistance[]; + retreatCost?: string[]; + convertedRetreatCost?: number; + set: Set; + number: string; + artist?: string; + rarity: string; + flavorText?: string; + nationalPokedexNumbers?: number[]; + legalities: ILegality; + images: CardImage; tcgplayer?: TCGPlayer; - types: string[]; - weaknesses: Weakness[]; } \ No newline at end of file