Match Card property order with API resource order
This commit is contained in:
@ -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[];
|
||||
}
|
||||
Reference in New Issue
Block a user