import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "dp5-55", localId: 55, // Card informations name: { en: "Chatot", fr: "Pijako", }, hp: 60, type: [ Type.COLORLESS, ], dexId: 441, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp5/55/low.png", fr: "https://assets.tcgdex.net/fr/dp/dp5/55/low.png", }, high: { en: "https://assets.tcgdex.net/en/dp/dp5/55/high.png", fr: "https://assets.tcgdex.net/fr/dp/dp5/55/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, attacks: [{ name: { en: "Mimic", fr: "Copie", }, text: { 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: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Chatter", fr: "Babil", }, text: { 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: Type.LIGHTNING, value: "+20" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Majestic Dawn", code: "dp5" } } export default card