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: "basep-31", localId: 31, // Card informations name: { en: "Cleffa", }, hp: 30, type: [ Type.COLORLESS, ], dexId: 173, image: { low: { en: "https://assets.tcgdex.net/en/base/basep/31/low", }, high: { en: "https://assets.tcgdex.net/en/base/basep/31/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Ken Sugimori", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Eek", }, text: { en: "Draw 2 cards", }, }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Wizards Black Star Promos", code: "basep" } } export default card