import { Card } from '../../../interfaces' import Set from '../Expedition Base Set' const card: Card = { name: { en: "Pichu", }, illustrator: "Atsuko Nishida", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 172, ], hp: 30, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Energy Patch", }, effect: { en: "Take an Energy card attached to one of your Pokémon and attach it to another of your Pokémon.", }, }, ], } export default card