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: "xyp-XY142", localId: "XY142", // Card informations name: { en: "Azelf", fr: "Créfadet", }, hp: 70, type: [ Type.PSYCHIC, ], dexId: 482, image: { low: { en: "https://assets.tcgdex.net/en/xy/xyp/XY142/low.png", fr: "https://assets.tcgdex.net/fr/xy/xyp/XY142/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xyp/XY142/high.png", fr: "https://assets.tcgdex.net/fr/xy/xyp/XY142/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 91, name: "chibi" }, attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Shining Eyes", fr: "Yeux Brillants", }, text: { en: "Put 2 damage counters on each of your opponent's Pokémon that has any damage counters on it.", fr: "Placez 2 marqueurs de dégâts sur chacun des Pokémon de votre adversaire ayant au moins un marqueur de dégâts.", }, },{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Mind Bend", fr: "Contrôleur d'Esprit", }, text: { en: "Your opponent's Active Pokémon is now Confused.", fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", }, damage: 30 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "XY Black Star Promos", code: "xyp" } } export default card