import { Card } from '../../../interfaces' import Set from '../Burning Shadows' const card: Card = { name: { en: "Raichu", fr: "Raichu", }, illustrator: "Kagemaru Himeno", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 26, ], hp: 110, types: [ "Lightning", ], evolveFrom: { en: "Pikachu", fr: "Pikachu", }, stage: "Stage1", abilities: [ { type: "Ability", name: { en: "Evoshock", fr: "Choc Évolutif", }, effect: { en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may leave your opponent's Active Pokémon Paralyzed.", fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l’un de vos Pokémon pendant votre tour, vous pouvez laisser le Pokémon Actif de votre adversaire Paralysé.", }, }, ], attacks: [ { cost: [ "Lightning", "Lightning", "Colorless", ], name: { en: "Volt Tackle", fr: "Électacle", }, effect: { en: "This Pokémon does 30 damage to itself.", fr: "Ce Pokémon s’inflige 30 dégâts.", }, damage: 130, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card