import { Card } from '../../../interfaces' import Set from '../Deoxys' const card: Card = { name: { en: "Slakoth", }, illustrator: "Takao Unno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 287, ], hp: 40, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Yawn", }, effect: { en: "The Defending Pokémon is now Asleep.", }, }, { cost: [ "Colorless", ], name: { en: "Flail", }, effect: { en: "Does 10 damage times the number of damage counters on Slakoth.", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card