import { Card } from '../../../interfaces' import Set from '../Chilling Reign' const card: Card = { set: Set, name: { en: "Koffing", fr: "Smogo" }, illustrator: "Aya Kusube", rarity: "Common", category: "Pokemon", hp: 70, types: ["Darkness"], attacks: [{ name: { en: "Smog", fr: "Purédpois" }, effect: { en: "Your opponent’s Active Pokémon is now Poisoned.", fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné." }, damage: 20, cost: ["Darkness", "Colorless"] }], weaknesses: [{ type: "Fighting", value: "×2" }], retreat: 1, regulationMark: "E" } export default card