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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/sm/smp/SM05/high.png", }, }, evolveFrom: {}, tags: [ Tag.GX, ], illustrator: { id: 4, name: "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