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: "basep-51", localId: 51, // Card informations name: { en: "Rapidash", }, hp: 60, type: [ Type.FIRE, ], dexId: 78, image: { low: { en: "https://assets.tcgdex.net/en/base/basep/51/low.png", }, high: { en: "https://assets.tcgdex.net/en/base/basep/51/high.png", }, }, evolveFrom: { en: "Ponyta", }, tags: [ Tag.STAGE1, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Jump Over", }, text: { en: "If you opponent has any Benched Pokémon, choose 1 of them. Flip a coin. If heads, this attack does 20 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, },{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Super Singe", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Burned.", }, damage: 30 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Wizards Black Star Promos", code: "basep" } } export default card