import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../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.png", fr: "https://assets.tcgdex.net/fr/sm/sm11/85/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm11/85/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm11/85/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 3, name: "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