import { Card } from '../../../interfaces' import Set from '../Promo' const card: Card = { name: { en: "Pikachu", fr: "Pikachu", }, illustrator: "5ban Graphics", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 25, ], hp: 60, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Quick Attack", fr: "Vive-Attaque", }, effect: { en: "Flip a coin. If heads, this attack does 10 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts supplémentaires.", }, damage: 10, }, { cost: [ "Lightning", "Lightning", "Colorless", ], name: { en: "Electro Ball", fr: "Boule Élek", }, damage: 50, }, ], weaknesses: [ { type: "Fightning", value: "×2" }, ], retreat: 1, } export default card