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: "smp-SM198", localId: "SM198", // Card informations name: { en: "Bulbasaur", }, hp: 70, type: [ Type.GRASS, ], dexId: 1, evolveFrom: {}, tags: [ Tag.BASIC, ], attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Ram", }, damage: 10 },{ cost: [ Type.GRASS, Type.GRASS, Type.COLORLESS ], name: { en: "Vine Whip", }, damage: 50 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "SM Black Star Promos", code: "smp" } } export default card