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: "det1-SM194", localId: "SM194", // Card informations name: { fr: "Détective Pikachu", }, hp: 90, type: [ Type.LIGHTNING, ], image: { low: { fr: "https://assets.tcgdex.net/fr/sm/det1/SM194/low", }, high: { fr: "https://assets.tcgdex.net/fr/sm/det1/SM194/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "MPC Film", attacks: [{ cost: [ Type.LIGHTNING ], name: { fr: "Brillante Déduction", }, text: { fr: "Regardez les 4 cartes du dessus de votre deck et ajoutez l’une d’entre elles à votre main. Mélangez les autres cartes avec votre deck.", }, }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.METAL, value: "-20" }], retreat: 2, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Détective Pikachu", code: "det1" } } export default card