import { Card } from '../../../interfaces' import Set from '../Gym Challenge' const card: Card = { name: { en: "Lt. Surge's Pikachu", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 25, ], hp: 40, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Quick Attack", }, effect: { en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage; if tails, this attack does 10 damage.", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card