import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Togepi", }, illustrator: "Miki Tanaka", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 175, ], hp: 40, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Minor Errand-Running", }, effect: { en: "Flip 2 coins. For each heads, search your deck for a basic Energy card. Show those cards to your opponent and then put them into your hand. Shuffle your deck afterward.", }, }, { cost: [ "Colorless", ], name: { en: "Pound", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card