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' import set from '../../../sets/swsh/swsh4' const card: Card = { // Card Global Informations id: "swsh4-131", localId: 131, name: { en: "Snorlax", }, illustrator: "Atsuko Nishida", rarity: Rarity.RARE, category: Category.POKEMON, set, // Card Pokémon Informations hp: 130, type: [ Type.COLORLESS, ], abilities: [ { type: AbilityType.TALENT, name: { en: "Gormandize", }, text: { en: "Once during your turn, if this Pokémon is in the Active Spot, you may draw cards until you have 7 cards in your hand. If you use this Ability, your turn ends.", }, } , ], attacks: [ { cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, ], name: { en: "Body Slam", }, text: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.", }, damage: 100, }, ], weaknesses: [ { type: Type.FIGHTING, value: "×2", }, ], retreat: 3, // Card Trainer/Energy informations } export default card