import { Card } from '../../../interfaces' import Set from '../Southern Islands' const card: Card = { name: { en: "Togepi", }, illustrator: "Keiko Fukuyama", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 175, ], hp: 40, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Bawl", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", }, damage: 10, }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card