import { Card } from '../../../interfaces' import Set from '../Power Keepers' const card: Card = { name: { en: "Slakoth", fr: "Parecool" }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 287, ], hp: 40, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Amnesia", fr: "Amnésie" }, effect: { en: "Choose 1 of the Defending Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.", fr: "Choisissez 1 des attaques du Pokémon Défenseur. Il ne pourra pas utiliser cette attaque lors du prochain tour de votre adversaire." }, }, { cost: [ "Colorless", ], name: { en: "Scratch", fr: "Griffe" }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card