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-35", localId: 35, // Card informations name: { en: "Pichu", }, hp: 30, type: [ Type.LIGHTNING, ], dexId: 172, image: { low: { en: "https://assets.tcgdex.net/en/base/basep/35/low", }, high: { en: "https://assets.tcgdex.net/en/base/basep/35/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Ken Sugimori", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Let's Play!", }, text: { en: "Search your deck for a Baby Pokémon card and put it onto your Bench. Shuffle your deck afterward. (You can't use this attack if your Bench is full.)", }, }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Wizards Black Star Promos", code: "basep" } } export default card