import { Card } from '../../../interfaces' import Set from '../Neo Destiny' const card: Card = { name: { en: "Shining Raichu", }, illustrator: "Hironobu Yoshida", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 26, ], hp: 70, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", "Lightning", "Water", "Water", ], name: { en: "Thundersquall", }, effect: { en: "If your opponent has any Benched Pokémon, choose 1 of them and this attack does 10 damage to that Pokémon for each Energy attached to Shining Raichu. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card