import { Card } from '../../../interfaces' import Set from '../Sword & Shield' const card: Card = { name: { en: "Wooloo", fr: "Moumouton", es: "Wooloo", it: "Wooloo", pt: "Wooloo", de: "Wolly" }, illustrator: "Mizue", rarity: "Common", category: "Pokemon", set: Set, hp: 70, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", fr: "Charge", es: "Placaje", it: "Azione", pt: "Investida", de: "Tackle" }, damage: 10, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Headbutt", fr: "Coup d'Boule", es: "Golpe Cabeza", it: "Bottintesta", pt: "Cabeçada", de: "Kopfnuss" }, damage: 50, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, regulationMark: "D", variants: { normal: true, reverse: true, holo: false, firstEdition: false }, description: { en: "Its curly fleece is such an effective cushion that this Pokémon could fall off a cliff and stand right back up at the bottom, unharmed." }, dexId: [831] } export default card