mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
78 lines
1.6 KiB
TypeScript
78 lines
1.6 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Astral Radiance"
|
|
|
|
const card: Card = {
|
|
dexId: [441],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Chatot",
|
|
fr: "Pijako",
|
|
es: "Chatot",
|
|
it: "Chatot",
|
|
pt: "Chatot",
|
|
de: "Plaudagei"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Colorless"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Collect",
|
|
fr: "Collecte",
|
|
es: "Coleccionar",
|
|
it: "Tassa",
|
|
pt: "Coleta",
|
|
de: "Sammeln"
|
|
},
|
|
|
|
effect: {
|
|
en: "Draw a card.",
|
|
fr: "Piochez une carte.",
|
|
es: "Roba 1 carta.",
|
|
it: "Pesca una carta.",
|
|
pt: "Compre 1 carta.",
|
|
de: "Ziehe 1 Karte."
|
|
}
|
|
}, {
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Jabber On",
|
|
fr: "Jacasserie",
|
|
es: "Cotorreo",
|
|
it: "Parla Parla",
|
|
pt: "Tagarela",
|
|
de: "Plappertasche"
|
|
},
|
|
|
|
effect: {
|
|
en: "During your opponent's next turn, the Defending Pokémon can't retreat.",
|
|
fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite.",
|
|
es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse.",
|
|
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.",
|
|
pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá recuar.",
|
|
de: "Während des nächsten Zuges deines Gegners kann sich das Verteidigende Pokémon nicht zurückziehen."
|
|
},
|
|
|
|
damage: 30
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "F",
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |