import { Card } from '../../../interfaces' import Set from '../HeartGold SoulSilver' const card: Card = { name: { en: "Jynx", fr: "Lippoutou", }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 124, ], hp: 70, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Mimic", fr: "Copie", }, effect: { en: "Shuffle your hand into your deck. Then, draw a number of cards equal to the number of cards in your opponent’s hand.", fr: "Mélangez votre main dans votre deck. Ensuite, piochez un nombre de cartes égal au nombre de cartes de la main de votre adversaire.", }, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Lick", fr: "Léchouille", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c’est face, le Pokémon Défenseur est maintenant Paralysé.", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, description: { en: "It rocks its body rhythmically. It appears to alter the rhythm depending on how it is feeling." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card