import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Raichu-GX", }, illustrator: undefined, rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 26, ], hp: 210, types: [ "Lightning", ], evolveFrom: { en: "Pikachu", }, stage: "Stage1", attacks: [ { cost: [ "Lightning", "Lightning", "Colorless", ], name: { en: "Thunderbolt", }, damage: 120, }, { cost: [ "Lightning", "Lightning", "Colorless", ], name: { en: "Spark Ball GX", }, effect: { en: "(You can't use more than 1 GX attack in a game.)", }, damage: 200, }, ], weaknesses: [ { type: "Fightning", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], } export default card