mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-08 18:27:51 +00:00
79 lines
1.4 KiB
TypeScript
79 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Majestic Dawn'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Chatot",
|
|
fr: "Pijako",
|
|
de: "Plaudagei"
|
|
},
|
|
illustrator: "Kagemaru Himeno",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
441,
|
|
],
|
|
hp: 60,
|
|
types: [
|
|
"Colorless",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
|
|
name: {
|
|
en: "Mimic",
|
|
fr: "Copie",
|
|
de: "Mimikry"
|
|
},
|
|
effect: {
|
|
en: "Shuffle your hand into your deck. Then, draw a number of cards equal to the number of cards in your opponent's hand.",
|
|
fr: "Mélangez votre main à votre deck. Ensuite, piochez autant de cartes qu'il y a de cartes dans la main de votre adversaire.",
|
|
de: "Mische deine Handkarten in dein Deck. Zähle danach die Anzahl der Karten auf der Hand deines Gegners. Ziehe ebenso viele Karten."
|
|
},
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Chatter",
|
|
fr: "Babil",
|
|
de: "Geschwätz"
|
|
},
|
|
effect: {
|
|
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
|
|
fr: "Le Pokémon Défenseur ne peut pas battre en retraite lors du prochain tour de votre adversaire.",
|
|
de: "Das Verteidigende Pokémon kann sich im nächsten Zug deines Gegners nicht zurückziehen."
|
|
},
|
|
damage: 20,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Lightning",
|
|
value: "+20"
|
|
},
|
|
],
|
|
resistances: [
|
|
{
|
|
type: "Fighting",
|
|
value: "-20"
|
|
},
|
|
],
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|