import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Mewtwo δ", }, illustrator: "Ryo Ueda", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 150, ], hp: 70, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Psychic Erase", }, effect: { en: "Choose 1 of the Defending Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.", }, }, { cost: [ "Lightning", "Lightning", "Colorless", ], name: { en: "Swift", }, effect: { en: "This attack's damage isn't affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on that Pokémon.", }, damage: 40, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card