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: "smp-SM77", localId: "SM77", // Card informations name: { en: "Mewtwo", fr: "Mewtwo", }, hp: 120, type: [ Type.PSYCHIC, ], dexId: 150, image: { low: { en: "https://assets.tcgdex.net/en/sm/smp/SM77/low", fr: "https://assets.tcgdex.net/fr/sm/smp/SM77/low", }, high: { en: "https://assets.tcgdex.net/en/sm/smp/SM77/high", fr: "https://assets.tcgdex.net/fr/sm/smp/SM77/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Kouki Saitou", abilities: [{ id: 256, type: AbilityType.TALENT, name: { en: "Pressure", fr: "Pression", }, text: { en: "As long as this Pokémon is your Active Pokémon, your opponent's Active Pokémon's attacks do 20 less damage (before applying Weakness and Resistance).", fr: "Tant que ce Pokémon est votre Pokémon Actif, les attaques du Pokémon Actif de votre adversaire infligent 20 dégâts de moins (avant application de la Faiblesse et de la Résistance).", } }], attacks: [{ cost: [ Type.PSYCHIC, Type.PSYCHIC, Type.PSYCHIC ], name: { en: "Super Psy Bolt", fr: "Super Psy", }, damage: 100 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 2, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "SM Black Star Promos", code: "smp" } } export default card