1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 09:47:51 +00:00

76 lines
1.3 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Platinum'
const card: Card = {
name: {
en: "Slakoth",
fr: "Parecool",
de: "Bummelz"
},
illustrator: "Atsuko Nishida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
287,
],
hp: 50,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Flail",
fr: "Fléau",
de: "Flail"
},
effect: {
en: "Does 10 damage times the number of damage counters on Slakoth.",
fr: "Inflige 10 dégâts multipliés par le nombre de marqueurs de dégât sur Parecool.",
de: "Does 10 damage times the number of damage counters on Slakoth."
},
damage: "10x",
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Slack Off",
fr: "Paresse",
de: "Slack Off"
},
effect: {
en: "Remove all damage counters from Slakoth. Slakoth can't attack during your next turn.",
fr: "Retirez à Parecool tous ses marqueurs de dégât. Parecool ne peut pas attaquer lors de votre prochain tour.",
de: "Remove all damage counters from Slakoth. Slakoth can't attack during your next turn."
},
},
],
weaknesses: [
{
type: "Fighting",
value: "+10"
},
],
retreat: 1,
}
export default card