import { Card } from '../../../interfaces' import Set from '../Dragons Exalted' const card: Card = { name: { en: "Slakoth", fr: "Parecool", es: "Slakoth", it: "Slakoth", pt: "Slakoth", de: "Bummelz" }, illustrator: "Kanako Eo", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 287, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Smack 'n' Slack", fr: "Raclée Dodo", }, effect: { en: "This Pokémon is now Asleep.", fr: "Ce Pokémon est maintenant Endormi.", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 2, } export default card