import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Slakoth", fr: "Parecool" }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 287, ], hp: 40, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Lazy Punch", fr: "Ramollo-poing" }, effect: { en: "Slakoth can't attack during your next turn.", fr: "Parecool ne peut pas attaquer lors de votre prochain tour." }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card