1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

75 lines
1.1 KiB
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 '../Deoxys'
const card: Card = {
name: {
en: "Slakoth",
fr: "Parecool",
de: "Bummelz"
},
illustrator: "Takao Unno",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
287,
],
hp: 40,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Yawn",
fr: "Baillement",
de: "Yawn"
},
effect: {
en: "The Defending Pokémon is now Asleep.",
fr: "Le Pokémon Défenseur est maintenant Endormi.",
de: "The Defending Pokémon is now Asleep."
},
},
{
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 plus the number of damage counters on Slakoth."
},
damage: "10x",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card