import { Card } from '../../../interfaces' import Set from '../Ruby & Sapphire' const card: Card = { name: { en: "Slakoth", }, illustrator: "Kagemaru Himeno", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 287, ], hp: 40, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Claw", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", }, damage: 20, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Slack Off", }, effect: { en: "Remove all damage counters from Slakoth. Slakoth can't attack during your next turn.", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card