import { Card } from '../../../interfaces' import Set from '../Base Set 2' const card: Card = { name: { en: "Wigglytuff", }, illustrator: "Mitsuhiro Arita", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 40, ], hp: 80, types: [ "Colorless", ], evolveFrom: { en: "Jigglypuff", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Lullaby", }, effect: { en: "The Defending Pokémon is now Asleep.", }, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Do the Wave", }, effect: { en: "Does 10 damage plus 10 more damage for each of your Benched Pokémon.", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card