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: "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.png", fr: "https://assets.tcgdex.net/fr/xy/xy9/59/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy9/59/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy9/59/high.png", }, }, evolveFrom: { en: "Espurr", fr: "Psystigri", }, tags: [ Tag.STAGE1, ], illustrator: { id: 0, name: "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