import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Mr. Mime", }, illustrator: "Yukiko Baba", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 122, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", "Colorless", ], name: { en: "Mind Shock", }, effect: { en: "Don't apply Weakness and Resistance.", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card