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: "xyp-XY125", localId: "XY125", // Card informations name: { en: "Mewtwo-EX", }, hp: 170, type: [ Type.PSYCHIC, ], dexId: 150, image: { low: { en: "https://assets.tcgdex.net/en/xy/xyp/XY125/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xyp/XY125/high.png", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: { id: 38, name: "Eske Yoshinob" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Photon Wave", }, text: { 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: [ Type.PSYCHIC, Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Psyburn", }, damage: 120 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.RareHoloEX, category: Category.POKEMON, set: { name: "XY Black Star Promos", code: "xyp" } } export default card