import { Card } from '../../../interfaces' import Set from '../Power Keepers' const card: Card = { name: { en: "Pichu", fr: "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", fr: "Évolution bébé" }, 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.", fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez placer Pikachu de votre main sur Pichu (vous le faites ainsi évoluer) et retirer à Pichu tous ses marqueurs de dégât." }, }, ], attacks: [ { cost: [ "Lightning", ], name: { en: "Cry for Help", fr: "Appel à l'aide" }, 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.", fr: "Cherchez dans votre deck un Pokémon (Pokémon-ex exclus), montrez-le à votre adversaire et placez-le dans votre main. Ensuite, mélangez votre deck." }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card