import { Card } from '../../../interfaces' import Set from '../Cosmic Eclipse' const card: Card = { name: { en: "Pikachu", fr: "Pikachu", }, illustrator: "Hitoshi Ariga", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 25, ], hp: 70, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Nuzzle", fr: "Frotte-Frimousse", }, effect: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, }, { cost: [ "Lightning", "Lightning", "Colorless", ], name: { en: "Volt Tackle", fr: "Électacle", }, effect: { en: "This Pokémon does 10 damage to itself.", fr: "Ce Pokémon s’inflige 10 dégâts.", }, damage: 70, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card