import { Card } from '../../../interfaces' import Set from '../Undaunted' const card: Card = { name: { en: "Raichu", fr: "Raichu", }, illustrator: "Kouki Saitou", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 26, ], hp: 80, types: [ "Lightning", ], evolveFrom: { en: "Pikachu", fr: "Pikachu", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Pain-full Punch", fr: "Mise au poing", }, damage: 30, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Spark", fr: "Étincelle", }, effect: { en: "Does 20 damage to 1 of your opponent’s Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)", fr: "Inflige 20 dégâts à l’un des Pokémon se trouvant sur le Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, damage: 40, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 0, description: { en: "When its electricity builds, its muscles are stimulated, and it becomes more aggressive than usual." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card