1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00

60 lines
905 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Slakoth",
fr: "Parecool",
de: "Bummelz"
},
illustrator: "Yuka Morii",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
287,
],
hp: 50,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Drowsy",
fr: "Ensommeillé",
de: "Schlaftrunken"
},
effect: {
en: "Both Slakoth and the Defending Pokémon are now Asleep.",
fr: "Parecool et le Pokémon Défenseur sont maintenant Endormis.",
de: "Bummelz und das Verteidigende Pokémon schlafen jetzt."
},
},
],
weaknesses: [
{
type: "Fighting",
value: "+10"
},
],
description: {
fr: "Il passe le plus clair de son temps affalé. Rien qu'à le voir, on a envie de bâiller."
}
}
export default card