1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 15:45:14 +00:00
Files
cards-database/data/Black & White/Dragons Exalted/101.ts
2021-05-26 14:51:02 +02:00

56 lines
663 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 '../Dragons Exalted'
const card: Card = {
name: {
en: "Slakoth",
fr: "Parecool",
},
illustrator: "Kanako Eo",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
287,
],
hp: 60,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Smack 'n' Slack",
fr: "Raclée Dodo",
},
effect: {
en: "This Pokémon is now Asleep.",
fr: "Ce Pokémon est maintenant Endormi.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 2,
}
export default card