1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-19 22:59:55 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

75 lines
1.1 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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Chatot",
fr: "Pijako",
},
illustrator: "HYOGONOSUKE",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
441,
],
hp: 70,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Mimic",
fr: "Copie",
},
effect: {
en: "Shuffle your hand into your deck. Then, draw a card for each card in your opponent's hand.",
fr: "Mélangez votre main avec votre deck. Ensuite, piochez une carte pour chaque carte dans la main de votre adversaire.",
},
},
{
cost: [
"Colorless",
],
name: {
en: "Tone-Deaf",
fr: "Dur dOreille",
},
effect: {
en: "Your opponent's Active Pokémon is now Confused.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card