import { Card } from '../../../interfaces' import Set from '../Mysterious Treasures' const card: Card = { name: { en: "Raichu", }, illustrator: "Daisuke Ito", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 26, ], hp: 90, types: [ "Lightning", ], evolveFrom: { en: "Pikachu", }, stage: "Stage1", attacks: [ { name: { en: "Electromagnetic Induction", }, effect: { en: "Search your deck for up to 2 Lightning Energy cards and attach them to 1 of your Pokémon. Shuffle your deck afterward.", }, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Explosive Thunder", }, effect: { en: "Discard all basic Lightning Energy cards attached to Raichu. This attack does 30 damage times the number of Lightning Energy cards you discarded.", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "+20" }, ], resistances: [ { type: "Metal", value: "-20" }, ], } export default card