import { Card } from "../../../interfaces" import Set from "../Wisdom of Sea and Sky" const card: Card = { set: Set, name: { en: "Jynx" }, illustrator: "Midori Harada", rarity: "One Diamond", category: "Pokemon", hp: 80, types: ["Psychic"], description: { en: "Its strange cries sound like human language.\nThere are some musicians who compose songs\nfor Jynx to sing." }, stage: "Basic", attacks: [{ name: { en: "Attract Smack" }, damage: 30, cost: ["Psychic", "Colorless"], effect: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed." } }], weaknesses: [{ type: "Darkness", value: "+20" }], retreat: 2 } export default card