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: "xy9-59", localId: 59, // Card informations name: { en: "Meowstic", fr: "Mistigrix", }, hp: 90, type: [ Type.PSYCHIC, ], dexId: 678, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy9/59/low", fr: "https://assets.tcgdex.net/fr/xy/xy9/59/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy9/59/high", fr: "https://assets.tcgdex.net/fr/xy/xy9/59/high", }, }, evolveFrom: { en: "Espurr", fr: "Psystigri", }, tags: [ Tag.STAGE1, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Energy Present", fr: "Cadeau d'Énergie", }, text: { en: "Attach up to 2 Energy cards from your hand to 1 of your Benched Pokémon.", fr: "Attachez jusqu'à 2 cartes Énergie de votre main à l'un de vos Pokémon de Banc.", }, },{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Psyshot", fr: "Piqûre Psy", }, damage: 40 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "BREAKpoint", code: "xy9" } } export default card