import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Mewtwo-EX", }, illustrator: "Eske Yoshinob", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 150, ], hp: 170, types: [ "Psychic", ], suffix: "EX", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Photon Wave", }, effect: { en: "During your opponent's next turn, any damage done by attacks from the Defending Pokémon is reduced by 30 (before applying Weakness and Resistance).", }, damage: 30, }, { cost: [ "Psychic", "Psychic", "Colorless", "Colorless", ], name: { en: "Psyburn", }, damage: 120, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card