import { Card } from '../../../interfaces' import Set from '../Expedition Base Set' const card: Card = { name: { en: "Mew", }, illustrator: "Hajime Kusajima", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 151, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", "Colorless", ], name: { en: "Super Psywave", }, effect: { en: "Choose one of you opponent's Pokémon. Count the number of Energy cards attached to that Pokémon. Put that many damage counters on the Pokémon.", }, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card