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-SM199", localId: "SM199", // Card informations name: { fr: "Psykokwak", }, hp: 70, type: [ Type.WATER, ], image: { low: { fr: "https://assets.tcgdex.net/fr/sm/det1/SM199/low", }, high: { fr: "https://assets.tcgdex.net/fr/sm/det1/SM199/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Framestore", attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { fr: "Griffe", }, damage: 30 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 2, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Détective Pikachu", code: "det1" } } export default card