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: "sm11-85", localId: 85, // Card informations name: { en: "Azelf", fr: "Créfadet", }, hp: 70, type: [ Type.PSYCHIC, ], dexId: 482, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm11/85/low", fr: "https://assets.tcgdex.net/fr/sm/sm11/85/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm11/85/high", fr: "https://assets.tcgdex.net/fr/sm/sm11/85/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Mizue", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Psypower", fr: "Puissance Psy", }, text: { en: "Put 3 damage counters on your opponent's Pokémon in any way you like.", fr: "Placez 3 marqueurs de dégâts sur les Pokémon de votre adversaire, de la manière que vous voulez.", }, }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Unified Minds", code: "sm11" } } export default card