import { Card } from '../../../interfaces' import Set from '../Hidden Legends' const card: Card = { name: { en: "Meditite", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 307, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Jab", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Steady Punch", }, effect: { en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card