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: "xy5-99", localId: 99, // Card informations name: { en: "Doublade", fr: "Dimoclès", }, hp: 80, type: [ Type.METAL, ], dexId: 680, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy5/99/low", fr: "https://assets.tcgdex.net/fr/xy/xy5/99/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy5/99/high", fr: "https://assets.tcgdex.net/fr/xy/xy5/99/high", }, }, evolveFrom: { en: "Honedge", fr: "Monorpale", }, tags: [ Tag.STAGE1, ], illustrator: "Kanako Eo", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "False Swipe", fr: "Faux-Chage", }, text: { en: "Flip a coin. If heads, put damage counters on your opponent's Active Pokémon until its remaining HP is 10.", fr: "Lancez une pièce. Si c'est face, placez des marqueurs de dégâts sur le Pokémon Actif de votre adversaire jusqu'à ce qu'il ait 10 PV.", }, },{ cost: [ Type.METAL, Type.METAL, Type.COLORLESS ], name: { en: "Slash", fr: "Tranche", }, damage: 60 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 2, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Primal Clash", code: "xy5" } } export default card