mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
75 lines
1.5 KiB
TypeScript
75 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Hidden Legends'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Claydol",
|
||
fr: "Kaorine",
|
||
de: "Lepumentas"
|
||
},
|
||
illustrator: "Kyoko Umemoto",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
344,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
evolveFrom: {
|
||
en: "Baltoy",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Poke-BODY",
|
||
name: {
|
||
en: "Primal Pull",
|
||
fr: "Attraction primaire",
|
||
de: "Primal Pull"
|
||
},
|
||
effect: {
|
||
en: "As long as Claydol is your Active Pokémon, each player's Evolved Pokémon pays Colorless more Energy to use its attacks.\"",
|
||
fr: "Tant que Kaorine est votre Pokémon Actif, le Pokémon Évolué de chaque joueur paye 1 Énergie supplémentaire pour utiliser ses attaques.",
|
||
de: "As long as Claydol is your Active Pokémon, each player's Evolved Pokémon pays more Energy to use its attacks."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
],
|
||
name: {
|
||
en: "Muddy Eye",
|
||
fr: "Oeil boueux",
|
||
de: "Muddy Eye"
|
||
},
|
||
effect: {
|
||
en: "Does 10 damage times the number of basic Energy cards attached to Claydol and the Defending Pokémon.",
|
||
fr: "Inflige 10 dégâts multipliés par le nombre de cartes Énergie de base attachées à Kaorine et au Pokémon Défenseur.",
|
||
de: "Does 10 damage times the number of basic Energy cards attached to Claydol and the Defending Pokémon."
|
||
},
|
||
damage: "10x",
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|