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: "dp6-133", localId: 133, // Card informations name: { en: "Poké Radar", fr: "Poké radar", }, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp6/133/low", fr: "https://assets.tcgdex.net/fr/dp/dp6/133/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dp6/133/high", fr: "https://assets.tcgdex.net/fr/dp/dp6/133/high", }, }, evolveFrom: {}, tags: [ Tag.ITEM, ], illustrator: "Kazuaki Aihara", attacks: [{ name: {}, text: { fr: "Regardez les 5 cartes du dessus de votre deck, choisissez-y autant de Pokémon que vous le voulez, montrez-les à votre adversaire et placez-les dans votre main. Replacez les autres cartes au dessus de votre deck. Ensuite, mélangez votre deck.", }, }], rarity: Rarity.UNCOMMON, category: Category.TRAINER, set: { name: "Legends Awakened", code: "dp6" } } export default card