import { Card } from '../../../interfaces' import Set from '../Shining Fates' const card: Card = { set: Set, name: { fr: "Smogo" }, illustrator: "Pani Kobayashi", rarity: "Common", category: "Pokemon", hp: 60, types: ["Darkness"], attacks: [{ name: { fr: "Ascension" }, effect: { fr: "Cherchez dans votre deck une carte Évolution de ce Pokémon, puis placez-la sur ce Pokémon pour le faire évoluer. Mélangez ensuite votre deck." }, cost: ["Darkness"] }], weaknesses: [{ type: "Fighting", value: "×2" }], retreat: 1 } export default card