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: "ex7-76", localId: 76, // Card informations name: { en: "Slowpoke", }, hp: 50, type: [ Type.PSYCHIC, ], dexId: 79, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex7/76/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex7/76/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Atsuko Nishida", abilities: [{ id: 416, type: AbilityType.POKEBODY, name: { en: "Dense", }, text: { en: "Any damage done to Slowpoke by attacks from your opponent's Evolved Pokémon is reduced by 10 (after applying Weakness and Resistance).", } }], attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Bite", }, damage: 10 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Team Rocket Returns", code: "ex7" } } export default card