import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Pichu δ", fr: "Pichu δ ESPÈCES DELTA" }, illustrator: "Kouki Saitou", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 172, ], hp: 50, types: [ "Metal", ], 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: [ "Colorless", ], name: { en: "Paste", fr: "Coller" }, effect: { en: "Search your discard pile for an Energy card and attach it to 1 of your Pokémon that has δ on its card.", fr: "Choisissez dans votre pile de défausse une carte Énergie et attachez-la à 1 de vos Pokémon possédant le symbole δ." }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card