import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Pikachu", }, illustrator: undefined, rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 25, ], hp: 60, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", "Colorless", "Colorless", ], name: { en: "Thundershock", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 40, }, ], weaknesses: [ { type: "Fightning", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], } export default card