import { Card } from '../../../interfaces' import Set from '../Ultra Prism' const card: Card = { name: { en: "Shinx", fr: "Lixy", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 403, ], hp: 60, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Charge", fr: "Chargeur", }, effect: { en: "Search your deck for a Lightning Energy card and attach it to this Pokémon. Then, shuffle your deck.", fr: "Cherchez une carte Énergie Lightning dans votre deck et attachez-la à ce Pokémon. Mélangez ensuite votre deck.", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card