import { Card } from '../../../interfaces' import Set from '../Skyridge' const card: Card = { name: { en: "Jigglypuff", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 39, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Nap", }, effect: { en: "Remove 1 damage counter from Jigglypuff", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Lullaby", }, effect: { en: "The Defending Pokémon is now Asleep.", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card