import { Card } from '../../../interfaces' import Set from '../Furious Fists' const card: Card = { name: { en: "Slakoth", fr: "Parecool", }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 287, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Big Yawn", fr: "Gros Bâillement", }, effect: { en: "Both Active Pokémon are now Asleep.", fr: "Les deux Pokémon Actifs sont maintenant Endormis.", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 3, } export default card