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: "xyp-XY192", localId: "XY192", // Card informations name: { en: "Mew", }, hp: 70, type: [ Type.PSYCHIC, ], dexId: 151, image: { low: { en: "https://assets.tcgdex.net/en/xy/xyp/XY192/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xyp/XY192/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Kouki Saitou", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Clairvoyance", }, text: { en: "Your opponent reveals his or her hand.", }, },{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Psychic", }, text: { en: "This attack does 10 more damage for each Energy attached to your opponent's Active Pokémon.", }, damage: 40 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "XY Black Star Promos", code: "xyp" } } export default card