import { Card } from '../../../interfaces' import Set from '../Southern Islands' const card: Card = { name: { en: "Jigglypuff", }, illustrator: "Keiko Fukuyama", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 39, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tempting Eyes", }, effect: { en: "Choose 1 of your opponent's Benched Pokémon and switch it with the Defending Pokémon.", }, }, { cost: [ "Colorless", ], name: { en: "Sing", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Asleep.", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card