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: "ecard3-100", localId: 100, // Card informations name: { en: "Snorlax", }, hp: 80, type: [ Type.COLORLESS, ], dexId: 143, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard3/100/low", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard3/100/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Naoyo Kimura", abilities: [{ id: 1314, type: AbilityType.POKEPOWER, name: { en: "Lolling About", }, text: { en: "Once during your turn (before you attack) if Snorlax is your Active Pokémon, you may remove 1 damage counter from Snorlax. Snorlax is now Asleep. This power can't be used if Snorlax is affected by a Special Condition.", } }], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Continuous Tumble", }, text: { en: "Flip a coin until you get tails. This attack does 30 damage times the number of heads.", }, damage: 30 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Skyridge", code: "ecard3" } } export default card