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: "xyp-XY04", localId: "XY04", // Card informations name: { en: "Sylveon", fr: "Nymphali", }, hp: 90, type: [ Type.FAIRY, ], dexId: 700, image: { low: { en: "https://assets.tcgdex.net/en/xy/xyp/XY04/low", fr: "https://assets.tcgdex.net/fr/xy/xyp/XY04/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xyp/XY04/high", fr: "https://assets.tcgdex.net/fr/xy/xyp/XY04/high", }, }, evolveFrom: { en: "Eevee", fr: "Évoli", }, tags: [ Tag.STAGE1, ], illustrator: "5ban Graphics", attacks: [{ cost: [ Type.FAIRY ], name: { en: "Disarming Voice", fr: "Voix Enjôleuse", }, text: { en: "Your opponent's Active Pokémon is now Confused.", fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", }, damage: 20 },{ cost: [ Type.FAIRY, Type.COLORLESS, Type.COLORLESS ], name: { en: "Fairy Wind", fr: "Vent Féérique", }, damage: 60 }], weaknesses: [{ type: Type.METAL, value: "×2" }], resistances: [{ type: Type.DARKNESS, value: "-20" }], retreat: 1, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "XY Black Star Promos", code: "xyp" } } export default card