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