import { Card } from '../../../interfaces' import Set from '../HeartGold SoulSilver' const card: Card = { name: { en: "Pikachu", fr: "Pikachu", }, illustrator: "match", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 25, ], hp: 60, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tail Slap", fr: "Coud’keu", }, damage: 10, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Quick Attack", fr: "Vive-attaque", }, effect: { en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.", fr: "Lancez une pièce. Si c’est face, cette attaque inflige 20 dégâts plus 10 dégâts supplémentaires.", }, damage: "20+", }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, description: { en: "It raises its tail to check its surroundings. The tail is sometimes struck by lightning in this pose." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card