import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Jynx" }, illustrator: "Oswaldo KATO", category: "Pokemon", hp: 80, types: ["Psychic"], stage: "Basic", attacks: [{ cost: ["Psychic", "Colorless"], name: { en: "Psychic" }, effect: { en: "This attack does 20 more damage for each Energy attached to your opponent's Active Pokémon." }, damage: "30+" }], weaknesses: [{ type: "Darkness", value: "+20" }], retreat: 1, rarity: "One Diamond", description: { en: "Its strange cries sound like human language. There are some musicians who compose songs for Jynx to sing.", } } export default card