import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Mewtwo-EX", }, illustrator: "Shizurow", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 150, ], hp: 170, types: [ "Psychic", ], suffix: "EX", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "X Ball", }, effect: { en: "Does 20 damage times the amount of Energy attached to this Pokémon and the Defending Pokémon.", }, damage: 20, }, { cost: [ "Psychic", "Psychic", "Colorless", ], name: { en: "Psydrive", }, effect: { en: "Discard an Energy attached to this Pokémon.", }, damage: 120, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 2 } export default card