import { Card } from '../../../interfaces' import Set from '../Power Keepers' const card: Card = { name: { en: "Pichu", }, illustrator: "Ken Sugimori", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 172, ], hp: 50, 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: [ { cost: [ "Lightning", ], name: { en: "Cry for Help", }, effect: { en: "Search your deck for a Lightning Pokémon (excluding Pokémon-ex), show it to your opponent, and put it into your hand. Shuffle your deck afterward.", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card