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: "base2-6", localId: 6, // Card informations name: { en: "Mr. Mime", }, hp: 40, type: [ Type.PSYCHIC, ], dexId: 122, image: { low: { en: "https://assets.tcgdex.net/en/base/base2/6/low", }, high: { en: "https://assets.tcgdex.net/en/base/base2/6/high", }, }, evolveFrom: { en: "Mime Jr.", }, tags: [ Tag.BASIC, ], illustrator: "Ken Sugimori", abilities: [{ id: 175, type: AbilityType.POKEPOWER, name: { en: "Invisible Wall", }, text: { en: "Whenever an attack (including your own) does 30 or more damage to Mr. Mime (after applying Weakness and Resistance), prevent that damage. (Any other effects of attacks still happen.) This power can't be used if Mr. Mime is Asleep, Confused, or Paralyzed.", } }], attacks: [{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Meditate", }, text: { en: "Does 10 damage plus 10 more damage for each damage counter on the Defending Pokémon.", }, damage: 10 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Jungle", code: "base2" } } export default card