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: "bw10-36", localId: 36, // Card informations name: { en: "Uxie", fr: "Créhelf", }, hp: 60, type: [ Type.PSYCHIC, ], dexId: 480, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw10/36/low", fr: "https://assets.tcgdex.net/fr/bw/bw10/36/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw10/36/high", fr: "https://assets.tcgdex.net/fr/bw/bw10/36/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Sumiyoshi Kizuki", attacks: [{ cost: [ Type.PSYCHIC ], 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.RARE, category: Category.POKEMON, set: { name: "Plasma Blast", code: "bw10" } } export default card