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: "dc1-27", localId: 27, // Card informations name: { en: "Team Aqua's Great Ball", fr: "Super Ball de la Team Aqua", }, image: { low: { en: "https://assets.tcgdex.net/en/xy/dc1/27/low", fr: "https://assets.tcgdex.net/fr/xy/dc1/27/low", }, high: { en: "https://assets.tcgdex.net/en/xy/dc1/27/high", fr: "https://assets.tcgdex.net/fr/xy/dc1/27/high", }, }, evolveFrom: {}, tags: [ Tag.ITEM, ], illustrator: "Toyste Beach", attacks: [{ name: {}, text: { fr: "Cherchez un Pokémon de base de la Team Aqua et une carte Énergie Water de base dans votre deck, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.", }, }], rarity: Rarity.UNCOMMON, category: Category.TRAINER, set: { name: "Double Crisis", code: "dc1" } } export default card