import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "hgss2-73", localId: 73, // Card informations name: { en: "Emcee's Chatter", fr: "Bavardage du maître", }, image: { low: { en: "https://assets.tcgdex.net/en/hgss/hgss2/73/low", fr: "https://assets.tcgdex.net/fr/hgss/hgss2/73/low", }, high: { en: "https://assets.tcgdex.net/en/hgss/hgss2/73/high", fr: "https://assets.tcgdex.net/fr/hgss/hgss2/73/high", }, }, evolveFrom: {}, tags: [ Tag.SUPPORTER, ], illustrator: "Kouki Saitou", attacks: [{ name: {}, text: { fr: "Vous ne pouvez jouer qu'une seule carte Supporter par tour. Lorsque vous jouez cette carte, placez-la près de votre Pokémon Actif. Une fois votre tour terminé, défaussez cette carte.", }, },{ name: {}, text: { fr: "Lancez une pièce. Si c'est face, piochez 3 cartes. Si c'est pile, piochez 2 cartes.", }, }], rarity: Rarity.UNCOMMON, category: Category.TRAINER, set: { name: "HS—Unleashed", code: "hgss2" } } export default card