import { Card } from '../../../interfaces' import Set from '../Sword & Shield' const card: Card = { name: { en: "Raichu", fr: "Raichu", es: "Raichu", it: "Raichu", pt: "Raichu", de: "Raichu" }, illustrator: "Hasuno", rarity: "Rare", category: "Pokemon", set: Set, hp: 130, types: [ "Lightning", ], evolveFrom: { en: "Pikachu", fr: "Pikachu", es: "Pikachu", it: "Pikachu", pt: "Pikachu", de: "Pikachu" }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Pain-Full Punch", fr: "Mise au Poing", es: "Puño Doloroso", it: "Dolorpugno", pt: "Soco Doloroso", de: "Schmerzhafter Hieb" }, damage: 40, }, { cost: [ "Lightning", "Lightning", "Colorless", ], name: { en: "Mach Bolt", fr: "Éclair Fulgurant", es: "Rayo Mach", it: "Fulmine Mach", pt: "Raio Supersônico", de: "Flotter Sprung" }, damage: 120, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, regulationMark: "D", variants: { normal: true, reverse: true, holo: false, firstEdition: false }, description: { en: "Its long tail serves as a ground to protect itself from its own high-voltage power." }, dexId: [26] } export default card