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: "sm9-108", localId: 108, // Card informations name: { en: "Doublade", fr: "Dimoclès", }, hp: 90, type: [ Type.METAL, ], dexId: 680, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm9/108/low", fr: "https://assets.tcgdex.net/fr/sm/sm9/108/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm9/108/high", fr: "https://assets.tcgdex.net/fr/sm/sm9/108/high", }, }, evolveFrom: { en: "Honedge", fr: "Monorpale", }, tags: [ Tag.STAGE1, ], illustrator: "Shin Nagasawa", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Tool Drop", fr: "Chute d’Outils", }, text: { en: "This attack does 30 damage for each Pokémon Tool card attached to all Pokémon.", fr: "Cette attaque inflige 30 dégâts pour chaque carte Outil Pokémon attachée aux Pokémon.", }, damage: 30 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 2, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Team Up", code: "sm9" } } export default card