import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Pikachu", fr: "Pikachu", }, illustrator: "Megumi Mizutani", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 25, ], hp: 60, types: [ "Lightning", ], stage: "Basic", abilities: [ { type: "Ability", name: { en: "Pika Shield", fr: "Pika Bouclier", }, effect: { en: "This Pokémon can't be Paralyzed.", fr: "Ce Pokémon ne peut pas être Paralysé.", }, }, ], attacks: [ { cost: [ "Lightning", ], name: { en: "Static Shock", fr: "Choc Statique", }, damage: 10, }, ], weaknesses: [ { type: "Fightning", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card