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: "base6-93", localId: 93, // Card informations name: { en: "Slowpoke", }, hp: 50, type: [ Type.PSYCHIC, ], dexId: 79, image: { low: { en: "https://assets.tcgdex.net/en/base/base6/93/low.png", }, high: { en: "https://assets.tcgdex.net/en/base/base6/93/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 37, name: "Miki Tanaka" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Spacing Out", }, text: { en: "Flip a coin. If heads, remove a damage counter from Slowpoke. This attack can't be used if Slowpoke has no damage counters on it.", }, },{ cost: [ Type.PSYCHIC, Type.PSYCHIC ], name: { en: "Scavenge", }, text: { en: "Discard 1 Energy card attached to Slowpoke in order to use this attack. Put a Trainer card from your discard pile into your hand.", }, }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Legendary Collection", code: "base6" } } export default card