import { Card } from '../../../interfaces' import Set from '../XY Black Star Promos' const card: Card = { name: { en: "Mew", fr: "Mew", }, illustrator: "Kouki Saitou", rarity: "None", category: "Pokemon", set: Set, dexId: [ 151, ], hp: 70, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Clairvoyance", fr: "Voyance", }, effect: { en: "Your opponent reveals his or her hand.", fr: "Votre adversaire montre sa main.", }, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card