import { Card } from '../../../interfaces' import Set from '../Nintendo Black Star Promos' const card: Card = { name: { en: "Pikachu", }, illustrator: "Kouki Saitou", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 25, ], hp: 50, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Agility", }, effect: { en: "Flip a coin. If heads, prevent all effects of an attack, including damage, done to Pikachu during your opponent's next turn.", }, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Thundershock", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card