mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 20:02:15 +00:00
59 lines
786 B
TypeScript
59 lines
786 B
TypeScript
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
|