import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "smp-SM196", localId: "SM196", // Card informations name: { en: "Mewtwo-GX", }, hp: 190, type: [ Type.PSYCHIC, ], dexId: 150, image: { low: { en: "https://assets.tcgdex.net/en/sm/smp/SM196/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/smp/SM196/high.png", }, }, evolveFrom: {}, tags: [ Tag.GX, ], illustrator: { id: 196, name: "MPC Film" }, attacks: [{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Telekinesis", }, text: { en: "This attack does 50 damage to 1 of your opponent's Pokémon. This damage isn't affected by Weakness or Resistance.", }, },{ cost: [ Type.PSYCHIC, Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Reigning Pulse", }, text: { en: "Your opponent's Active Pokémon is now Confused.", }, damage: 120 },{ cost: [ Type.PSYCHIC, Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Psychic Nova-GX", }, text: { en: "Prevent all damage done to this Pokémon by attacks during your opponent's next turn. (You can't use more than 1 GX attack in a game.)", }, damage: 180 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "SM Black Star Promos", code: "smp" } } export default card