import { Card } from '../../../interfaces' import Set from '../HGSS Black Star Promos' const card: Card = { name: { en: "Pikachu", }, illustrator: "Kanako Eo", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 25, ], hp: 70, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Recharge", }, effect: { en: "Flip a coin. If heads, search your deck for a Lightning Energy card and attach it to Pikachu. Shuffle your deck afterward.", }, }, { cost: [ "Lightning", "Lightning", "Colorless", "Colorless", ], name: { en: "Thunderbolt", }, effect: { en: "Discard all Energy attached to Pikachu.", }, damage: 100, }, ], weaknesses: [ { type: "Fighting", value: "+10" }, ], resistances: [ { type: "Metal", value: "-20" }, ], } export default card