import { Card } from '../../../interfaces' import Set from '../Legends Awakened' const card: Card = { name: { en: "Mewtwo", fr: "Mewtwo", }, illustrator: "Ken Sugimori", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 150, ], hp: 80, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Hypnoblast", fr: "Hypnoblast", }, effect: { en: "The Defending Pokémon is now Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi.", }, damage: 10, }, { cost: [ "Psychic", "Colorless", "Colorless", ], name: { en: "Psychic", fr: "Psyko", }, effect: { en: "Does 40 damage plus 10 more damage for each Energy attached to the Defending Pokémon.", fr: "Inflige 40 dégâts plus 10 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Défenseur.", }, damage: 40, }, ], weaknesses: [ { type: "Psychic", value: "+20" }, ], retreat: 2, } export default card