import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Mew", }, illustrator: undefined, rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 151, ], hp: 60, types: [ "Psychic", ], stage: "Basic", abilities: [ { type: "Ability", name: { en: "Bench Barrier", }, effect: { en: "Prevent all damage done to your Benched Pokémon by your opponent's attacks.", }, }, ], attacks: [ { cost: [ "Colorless", ], name: { en: "Psypower", }, effect: { en: "Put 3 damage counters on your opponent's Pokémon in any way you like.", }, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card