import { Card } from '../../../interfaces' import Set from '../POP Series 9' const card: Card = { name: { en: "Pichu", }, illustrator: "Midori Harada", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 172, ], hp: 40, types: [ "Lightning", ], stage: "Basic", abilities: [ { type: "Poke-POWER", name: { en: "Baby Evolution", }, effect: { en: "Once during your turn (before your attack), you may put Pikachu from your hand onto Pichu (this counts as evolving Pichu) and remove all damage counters from Pichu.", }, }, ], attacks: [ { name: { en: "Find a Friend", }, effect: { en: "Flip a coin. If heads, search your deck for a Pokémon, show it to your opponent, and put it into your hand. Shuffle your deck afterward.", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], } export default card