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: "si1-12", localId: 12, // Card informations name: { en: "Lapras", }, hp: 70, type: [ Type.WATER, ], dexId: 131, image: { low: { en: "https://assets.tcgdex.net/en/neo/si1/12/low", }, high: { en: "https://assets.tcgdex.net/en/neo/si1/12/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Naoyo Kimura", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Gentle Song", }, text: { en: "If Lapras has any damage counters on it, remove 2 of them from it (1 if it only has 1). If the Defending Pokémon has any damage counters on it, remove 2 of them from it (1 if it only has 1). The Defending Pokémon is now Asleep.", }, },{ cost: [ Type.WATER, Type.WATER ], name: { en: "Ice Beam", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Southern Islands", code: "si1" } } export default card