import { Card } from '../../../interfaces' import Set from '../BREAKpoint' const card: Card = { name: { en: "Shinx", fr: "Lixy", }, illustrator: "Saya Tsuruta", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 403, ], hp: 60, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Roar", fr: "Hurlement", }, effect: { en: "Your opponent switches his or her Active Pokémon with 1 of his or her Benched Pokémon.", fr: "Votre adversaire échange son Pokémon Actif avec l'un de ses Pokémon de Banc.", }, }, { cost: [ "Colorless", ], name: { en: "Flop", fr: "Flop", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card