import { Card } from '../../../interfaces' import Set from '../Hidden Legends' const card: Card = { name: { en: "Jigglypuff", }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 39, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Rollout", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Sleepy Song", }, effect: { en: "Each Defending Pokémon is now Asleep.", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card