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: "xy10-13", localId: 13, // Card informations name: { en: "Delphox", fr: "Goupelin", }, hp: 140, type: [ Type.FIRE, ], dexId: 655, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy10/13/low", fr: "https://assets.tcgdex.net/fr/xy/xy10/13/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy10/13/high", fr: "https://assets.tcgdex.net/fr/xy/xy10/13/high", }, }, evolveFrom: { en: "Braixen", fr: "Roussil", }, tags: [ Tag.STAGE2, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.FIRE ], name: { en: "Flickering Flames", fr: "Flammes Vacillantes", }, text: { en: "Your opponent's Active Pokémon is now Asleep.", fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.", }, damage: 40 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Psystorm", fr: "Tempête Psy", }, text: { en: "This attack does 20 damage times the amount of Energy attached to all Pokémon in play.", fr: "Cette attaque inflige 20 dégâts multipliés par le nombre d'Énergies attachées à tous les Pokémon en jeu.", }, damage: 20 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 2, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Fates Collide", code: "xy10" } } export default card