import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Stunky", fr: "Moufouette" }, illustrator: "Shigenori Negishi", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Poison Gas", fr: "Gaz Toxik" }, effect: { en: "Your opponent’s Active Pokémon is now Poisoned.", fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné." }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 2, hp: 70, types: ["Darkness"] } export default card