import { Card } from '../../../interfaces' import Set from '../Neo Destiny' const card: Card = { name: { en: "Jigglypuff", }, illustrator: "Yuka Morii", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 39, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Expand", }, effect: { en: "All damage done to Jigglypuff during your opponent's next turn is reduced by 10 (after applying Weakness and Resistance).", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card