import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Meditite", fr: "Méditikka" }, illustrator: "Yukiko Baba", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", ], name: { en: "Yoga Shock", fr: "Yoga Choc" }, effect: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé." }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, hp: 70, types: ["Fighting"] } export default card