1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00

59 lines
786 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Sandstorm'
const card: Card = {
name: {
en: "Slakoth",
fr: "Parecool",
de: "Bummelz"
},
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",
de: "Müder Schlag"
},
effect: {
en: "Slakoth can't attack during your next turn.",
fr: "Parecool ne peut pas attaquer lors de votre prochain tour.",
de: "Bummelz kann in deinem nächsten Zug nicht angreifen."
},
damage: 10,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card