import { Card } from '../../../interfaces' import Set from '../Neo Genesis' const card: Card = { name: { en: "Togepi", }, illustrator: "Naoyo Kimura", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 175, ], hp: 40, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Poison Barb", }, effect: { en: "The Defending Pokémon is now Poisoned.", }, damage: 20, }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card