import { Card } from '../../../interfaces' import Set from '../Shining Legends' const card: Card = { name: { en: "Raikou", fr: "Raikou", }, illustrator: "Mitsuhiro Arita", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 243, ], hp: 120, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Booming Thunder", fr: "Tonnerre Grondant", }, effect: { en: "Attach a Lightning Energy card from your discard pile to 1 of your Benched Pokémon.", fr: "Attachez une carte Énergie Lightning de votre pile de défausse à l’un de vos Pokémon de Banc.", }, damage: 30, }, { cost: [ "Lightning", "Lightning", "Colorless", ], name: { en: "Electric Ball", fr: "Boule de Foudre", }, damage: 90, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 2, } export default card