import { Card } from '../../../interfaces' import Set from '../Jungle' const card: Card = { name: { en: "Jigglypuff", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 39, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Lullaby", }, effect: { en: "The Defending Pokémon is now Asleep.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Pound", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card