import { Card } from '../../../interfaces' import Set from '../Mysterious Treasures' const card: Card = { name: { en: "Slakoth", }, illustrator: "Yuka Morii", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 287, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Drowsy", }, effect: { en: "Both Slakoth and the Defending Pokémon are now Asleep.", }, }, ], weaknesses: [ { type: "Fighting", value: "+10" }, ], } export default card