import { Card } from '../../../interfaces' import Set from '../Emerald' const card: Card = { name: { en: "Meditite", fr: "Meditikka", de: "Meditie" }, illustrator: "Kouki Saitou", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 307, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "High Jump Kick", fr: "Pied voltige", de: "Hight Jump Kick" }, damage: 10, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Fake Out", fr: "Bluff", de: "Fake Out" }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", de: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed." }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card