import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Mewtwo", fr: "Mewtwo", }, illustrator: "match", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 150, ], hp: 120, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", "Colorless", ], name: { en: "Psy Bolt", }, effect: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 2, } export default card