import { Card } from '../../../interfaces' import Set from '../XY Black Star Promos' const card: Card = { name: { en: "Meowstic", fr: "Mistigrix", }, illustrator: "kirisAki", rarity: "None", category: "Pokemon", set: Set, dexId: [ 678, ], hp: 90, types: [ "Psychic", ], evolveFrom: { en: "Espurr", fr: "Psystigri", }, stage: "Stage1", abilities: [ { type: "Ability", name: { en: "Mysterious Ears", fr: "Oreilles Mystérieuses", }, effect: { en: "If this Pokémon is your Active Pokémon and is damaged by an opponent’s attack (even if this Pokémon is Knocked Out), the Attacking Pokémon is now Confused.", fr: "Si ce Pokémon est votre Pokémon Actif et qu’il subit les dégâts d’une attaque de votre adversaire (même si ce Pokémon est mis K.O.), le Pokémon Attaquant est maintenant Confus.", }, }, ], attacks: [ { cost: [ "Psychic", "Colorless", "Colorless", ], name: { en: "Psyblast", fr: "Explopsy", }, effect: { en: "Flip a coin. If heads, discard an Energy attached to your opponent’s Active Pokémon.", fr: "Lancez une pièce. Si c’est face, défaussez une Énergie attachée au Pokémon Actif de votre adversaire.", }, damage: 60, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card