1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-17 13: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

74 lines
1.1 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Majestic Dawn'
const card: Card = {
name: {
en: "Chatot",
fr: "Pijako",
},
illustrator: "Kagemaru Himeno",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
441,
],
hp: 60,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
name: {
en: "Mimic",
fr: "Copie",
},
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.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Chatter",
fr: "Babil",
},
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.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Lightning",
value: "+20"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
}
export default card