import { Card } from '../../../interfaces' import Set from '../Wizards Black Star Promos' const card: Card = { name: { en: "Mewtwo", }, illustrator: "Benimaru Itoh", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 150, ], hp: 70, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Energy Absorption", }, effect: { en: "Choose up to 2 Energy cards from your discard pile and attach them to Mewtwo.", }, }, { cost: [ "Psychic", "Psychic", "Colorless", ], name: { en: "Psyburn", }, damage: 40, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card