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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex7/76/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 32, name: "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