import { Card } from '../../../interfaces' import Set from '../Expedition Base Set' const card: Card = { name: { en: "Raichu", }, illustrator: "Atsuko Nishida", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 26, ], hp: 80, types: [ "Lightning", ], evolveFrom: { en: "Pikachu", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Plasma", }, effect: { en: "If there are any Energy cards in your discard pile, flip a coin. If heads, attach one of them to Raichu.", }, damage: 10, }, { cost: [ "Lightning", "Lightning", "Colorless", ], name: { en: "Shock Bolt", }, effect: { en: "Discard all L Energy cards attached to Raichu or this attack does nothing.", }, damage: 60, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card