import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "xy8-163", localId: 163, // Card informations name: { en: "Mewtwo-EX", fr: "Mewtwo-EX", }, hp: 170, type: [ Type.PSYCHIC, ], dexId: 150, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy8/163/low", fr: "https://assets.tcgdex.net/fr/xy/xy8/163/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy8/163/high", fr: "https://assets.tcgdex.net/fr/xy/xy8/163/high", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: "Mitsuhiro Arita", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Photon Wave", fr: "Onde Photon", }, 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).", fr: "Pendant le prochain tour de votre adversaire, tous les dégâts infligés par des attaques du Pokémon Défenseur sont réduits de 30 (avant application de la Faiblesse et de la Résistance).", }, damage: 30 },{ cost: [ Type.PSYCHIC, Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Psyburn", fr: "Brûlure Psy", }, damage: 120 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 2, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "BREAKthrough", code: "xy8" } } export default card