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: "gym2-59", localId: 59, // Card informations name: { en: "Sabrina's Mr. Mime", }, hp: 60, type: [ Type.PSYCHIC, ], dexId: 122, image: { low: { en: "https://assets.tcgdex.net/en/gym/gym2/59/low", }, high: { en: "https://assets.tcgdex.net/en/gym/gym2/59/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Ken Sugimori", attacks: [{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Magic Darts", }, text: { en: "Choose 1 of your opponent's Pokémon and flip 3 coins. This attack does 10 damage times the number of heads to that Pokémon. Don't apply Weakness and Resistance for this attack.", }, damage: 10 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Gym Challenge", code: "gym2" } } export default card