import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "ex11-52", localId: 52, // Card informations name: { en: "Rapidash", }, hp: 70, type: [ Type.FIRE, ], dexId: 78, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex11/52/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex11/52/high", }, }, evolveFrom: { en: "Ponyta", }, tags: [ Tag.STAGE1, ], illustrator: "Atsuko Nishida", attacks: [{ cost: [ Type.FIRE ], name: { en: "Super Singe", }, text: { en: "The Defending Pokémon is now Burned.", }, },{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Stomp", }, text: { en: "Flip a coin. If heads, this attack does 30 damage plus 10 more damage.", }, damage: 30 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Delta Species", code: "ex11" } } export default card