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: "hgssp-HGSS14", localId: "HGSS14", // Card informations name: { en: "Lapras", }, hp: 90, type: [ Type.WATER, ], dexId: 131, image: { low: { en: "https://assets.tcgdex.net/en/hgss/hsp/HGSS14/low", }, high: { en: "https://assets.tcgdex.net/en/hgss/hsp/HGSS14/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Masakazu Fukuda", attacks: [{ cost: [ Type.WATER ], name: { en: "Ferry", }, text: { en: "Search your discard pile for a Supporter card, show it to your opponent, and put it into your hand.", }, },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS ], name: { en: "Surf", }, damage: 40 }], weaknesses: [{ type: Type.METAL, value: "×2" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "HGSS Black Star Promos", code: "hgssp" } } export default card