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: "xy1-25", localId: 25, // Card informations name: { en: "Braixen", fr: "Roussil", }, hp: 80, type: [ Type.FIRE, ], dexId: 654, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy1/25/low", fr: "https://assets.tcgdex.net/fr/xy/xy1/25/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy1/25/high", fr: "https://assets.tcgdex.net/fr/xy/xy1/25/high", }, }, evolveFrom: { en: "Fennekin", fr: "Feunnec", }, tags: [ Tag.STAGE1, ], illustrator: "5ban Graphics", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Clairvoyant Eye", fr: "Œil Clairvoyant", }, text: { en: "Look at the top 3 cards of your deck and put them back on top of your deck in any order.", fr: "Regardez les 3 cartes du dessus de votre deck et replacez-les sur le dessus de votre deck dans l'ordre de votre choix.", }, },{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Fire Tail Slap", fr: "Coup de Queue Enflammé", }, text: { en: "Discard a Fire Energy attached to this Pokémon.", fr: "Défaussez une Énergie Fire attachée à ce Pokémon.", }, damage: 40 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "XY", code: "xy1" } } export default card