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: "smp-SM05", localId: "SM05", // Card informations name: { en: "Snorlax-GX", }, hp: 190, type: [ Type.COLORLESS, ], dexId: 143, image: { low: { en: "https://assets.tcgdex.net/en/sm/smp/SM05/low", }, high: { en: "https://assets.tcgdex.net/en/sm/smp/SM05/high", }, }, evolveFrom: {}, tags: [ Tag.GX, ], illustrator: "5ban Graphics", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Collapse", }, text: { en: "This Pokémon is now Asleep.", }, damage: 80 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Thunderous Snore", }, text: { en: "This attack can be used if this Pokémon is Asleep. If it is not Asleep, this attack does nothing.", }, damage: 180 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Pulverizing Pancake-GX", }, text: { en: "This Pokémon is now Asleep. (You can't use more than 1 GX attack in a game.)", }, damage: 210 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "SM Black Star Promos", code: "smp" } } export default card