import { Card } from '../../../interfaces' import Set from '../Gym Challenge' const card: Card = { name: { en: "Blaine's Ponyta", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 77, ], hp: 50, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Hind Kick", }, effect: { en: "If you have any Benched Pokémon, flip a coin. If heads, switch Blaine's Ponyta with 1 of your Benched Pokémon.", }, damage: 20, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card