import { Card } from "../../../interfaces" import Set from "../Fusion Strike" const card: Card = { dexId: [40], set: Set, name: { en: "Wigglytuff", fr: "Grodoudou", es: "Wigglytuff", it: "Wigglytuff", pt: "Wigglytuff", de: "Knuddeluff" }, rarity: "Uncommon", category: "Pokemon", hp: 120, types: ["Psychic"], evolveFrom: { en: "Jigglypuff", fr: "Rondoudou", es: "Jigglypuff", it: "Jigglypuff", pt: "Jigglypuff", de: "Pummeluff" }, stage: "Stage1", retreat: 2, regulationMark: "E", illustrator: "Asako Ito", description: { en: "When it gets angry, it inhales with all its might, and its body gradually inflates. Sometimes they can grow 20 times larger!" }, attacks: [{ cost: ["Psychic"], name: { en: "Find Treasure", fr: "Course au Trésor", de: "Schätze finden", es: "Encontrar Tesoros", pt: "Encontrar Tesouro", it: "Caccia al Tesoro" }, effect: { en: "Search your deck for up to 2 cards and put them into your hand. Then, shuffle your deck.", fr: "Cherchez dans votre deck jusqu'à 2 cartes, puis ajoutez-les à votre main. Mélangez ensuite votre deck.", de: "Durchsuche dein Deck nach bis zu 2 Karten und nimm sie auf deine Hand. Mische anschließend dein Deck.", es: "Busca en tu baraja hasta 2 cartas y ponlas en tu mano. Después, baraja las cartas de tu baraja.", pt: "Procure por até 2 cartas no seu baralho e coloque-as na sua mão. Em seguida, embaralhe o seu baralho.", it: "Cerca nel tuo mazzo fino a due carte e aggiungile a quelle che hai in mano. Poi rimischia le carte del tuo mazzo." } }, { cost: ["Psychic", "Colorless", "Colorless"], name: { en: "Hyper Voice", fr: "Mégaphone", de: "Schallwelle", es: "Vozarrón", pt: "Hipervoz", it: "Granvoce" }, damage: 90 }], variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card