import { Card } from '../../../interfaces' import Set from '../Team Magma vs Team Aqua' const card: Card = { name: { en: "Raichu", }, illustrator: "Ken Sugimori", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 26, ], hp: 80, types: [ "Lightning", ], stage: "Stage1", attacks: [ { cost: [ "Lightning", "Colorless", ], name: { en: "Spark", }, effect: { en: "Does 10 damage to 2 of your opponent's Benched Pokémon (1 if there is only 1). (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 20, }, { cost: [ "Lightning", "Lightning", "Colorless", ], name: { en: "Kerzap", }, effect: { en: "Flip a coin. If heads, this attack does 40 damage plus 40 more damage to the Defending Pokémon and discard all Lightning Energy cards attached to Raichu.", }, damage: 40, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card