1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 22:02:15 +00:00

98 lines
2.6 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 '../Ancient Origins'
const card: Card = {
name: {
en: "Claydol",
fr: "Kaorine",
es: "Claydol",
it: "Claydol",
pt: "Claydol",
de: "Lepumentas"
},
illustrator: "Satoshi Shirai",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
344,
],
hp: 100,
types: [
"Psychic",
],
evolveFrom: {
en: "Baltoy",
fr: "Balbuto",
es: "Baltoy",
it: "Baltoy",
pt: "Baltoy",
de: "Puppance"
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Rewind",
fr: "Rembobinage",
es: "Rebobinar",
it: "Riavvolgi",
pt: "Retroceder",
de: "Rücklauf"
},
effect: {
en: "Devolve each of your opponent's evolved Pokémon and put the highest Stage Evolution card on it into your opponent's hand.",
fr: "Faites dés-évoluer chacun des Pokémon évolués de votre adversaire et mettez sa carte Évolution de plus haut Niveau dans la main de votre adversaire.",
es: "Involuciona a cada uno de los Pokémon evolucionados de tu rival y pon la carta de Evolución de fase más alta que tenga sobre él en la mano de tu rival.",
it: "Annulla l'evoluzione di ciascuno dei Pokémon evoluti del tuo avversario e mettine la carta Evoluzione di fase più alta nella sua mano.",
pt: "Reverte cada um dos Pokémon evoluídos do seu oponente e coloca o card de Evolução de Estágio mais alto na mão do seu oponente.",
de: "Rückentwickle jedes entwickelte Pokémon deines Gegners. Dein Gegner nimmt die höchste daraufliegende Evolutionskarte auf seine Hand."
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Hyper Beam",
fr: "Ultralaser",
es: "Hiperrayo",
it: "Iper Raggio",
pt: "Hiper Raio",
de: "Hyperstrahl"
},
effect: {
en: "Flip a coin. If heads, discard an Energy attached to your opponent's Active Pokémon.",
fr: "Lancez une pièce. Si c'est face, défaussez une Énergie attachée au Pokémon Actif de votre adversaire.",
es: "Lanza 1 moneda. Si sale cara, descarta 1 Energía unida al Pokémon Activo de tu rival.",
it: "Lancia una moneta. Se esce testa, scarta un'Energia assegnata al Pokémon attivo del tuo avversario.",
pt: "Jogue uma moeda. Se sair cara, descarte uma Energia ligada ao Pokémon Ativo do seu oponente.",
de: "Wirf 1 Münze. Lege bei \"Kopf\" 1 an das Aktive Pokémon deines Gegners angelegte Energie auf den Ablagestapel deines Gegners."
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card