import { Card } from '../../../interfaces' import Set from '../BW Black Star Promos' const card: Card = { name: { en: "Raichu", }, illustrator: "Mizue", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 26, ], hp: 100, types: [ "Lightning", ], stage: "Stage1", attacks: [ { cost: [ "Lightning", "Colorless", ], name: { en: "Quick Attack", }, effect: { en: "Flip a coin. If heads, this attack does 20 more damage.", }, damage: 30, }, { cost: [ "Lightning", "Colorless", "Colorless", ], name: { en: "Thunder Blast", }, effect: { en: "Discard an Energy attached to this Pokémon.", }, damage: 90, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card