import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../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.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex11/52/high.png", }, }, evolveFrom: { en: "Ponyta", }, tags: [ Tag.STAGE1, ], illustrator: { id: 32, name: "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