import { Card } from '../../../interfaces' import Set from '../Undaunted' const card: Card = { name: { en: "Stunky", fr: "Moufouette", }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 434, ], hp: 60, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Double Scratch", fr: "Double écorchure", }, effect: { en: "Flip 2 coins. This attack does 10 damage times the number of heads.", fr: "Lancez 2 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de faces.", }, damage: "10×", }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 1, description: { en: "The foul fluid from its rear is so revolting that it can make people feel queasy up to a mile and a quarter away." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card