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: "g1-RC27", localId: "RC27", // Card informations name: { en: "Wally", fr: "Timmy", }, image: { low: { en: "https://assets.tcgdex.net/en/xy/g1/RC27/low", fr: "https://assets.tcgdex.net/fr/xy/g1/RC27/low", }, high: { en: "https://assets.tcgdex.net/en/xy/g1/RC27/high", fr: "https://assets.tcgdex.net/fr/xy/g1/RC27/high", }, }, evolveFrom: {}, tags: [ Tag.SUPPORTER, ], illustrator: "Megumi Mizutani", attacks: [{ name: {}, text: { fr: "Cherchez dans votre deck une carte Évolution de l'un de vos Pokémon (excepté les Pokémon-EX) et placez-la sur ce dernier. (Cela équivaut à faire évoluer le Pokémon.) Mélangez ensuite votre deck. Vous ne pouvez utiliser cette carte ni pendant votre premier tour ni sur un Pokémon qui a été joué pendant ce tour.", }, }], rarity: Rarity.UNCOMMON, category: Category.TRAINER, set: { name: "Generations", code: "g1" } } export default card