import { Card } from '../../../interfaces' import Set from '../Jungle' const card: Card = { name: { en: "Jigglypuff", fr: "Rondoudou", de: "Pummeluff" }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 39, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Lullaby", fr: "Comptine", de: "Wiegenlied" }, effect: { en: "The Defending Pokémon is now Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi.", de: "das verteidigende Pokémon ist jetzt gelähmt." }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Pound", fr: "Écras'face", de: "Pfund" }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], description: { fr: "Quand ses yeux s'illuminent, il chante une mystérieuse berceuse." } } export default card