import { Card } from '../../../interfaces' import Set from '../Expedition Base Set' const card: Card = { name: { en: "Pikachu", fr: "Pikachu", de: "Pikachu" }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 25, ], hp: 50, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Lightning Tail", fr: "Queue-éclair", de: "Blitzschwanz" }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", de: "Wirf eine Münze. Bei 'Kopf' ist das Verteidigende Pokémon jetzt gelähmt." }, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Tackle", fr: "Charge", de: "Tackle" }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card