import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../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: { id: 5, name: "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