import { Card } from '../../../interfaces' import Set from '../Neo Revelation' const card: Card = { name: { en: "Raichu", }, illustrator: "Masako Yamashita", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 26, ], hp: 80, types: [ "Lightning", ], evolveFrom: { en: "Pikachu", }, stage: "Stage1", attacks: [ { cost: [ "Lightning", "Colorless", ], name: { en: "Thundershock", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20, }, { cost: [ "Lightning", "Lightning", "Lightning", ], name: { en: "Lightning Strike", }, effect: { en: "You may discard all Energy cards attached to Raichu. If you do, this attack does 80 damage.", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card