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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/hgss/hsp/HGSS14/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 8, name: "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