import { Card } from '../../../interfaces' import Set from '../Hidden Fates' const card: Card = { name: { en: "Pikachu", fr: "Pikachu", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 25, ], hp: 70, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Quick Attack", fr: "Vive-Attaque", }, damage: 10, }, { cost: [ "Lightning", "Lightning", "Colorless", ], name: { en: "Electro Ball", fr: "Boule Élek", }, damage: 60, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card