import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Medicham", }, illustrator: "Suwama Chiaki", rarity: "Uncommon", category: "Pokemon", set: Set, evolveFrom: { en: "Meditite", }, attacks: [ { cost: [ "Fighting", ], name: { en: "Yoga Kick", }, effect: { en: "This attack’s damage isn’t affected by Weakness or Resistance.", }, damage: 40, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Psychic", }, effect: { en: "This attack does 20 more damage for each Energy attached to your opponent’s Active Pokémon.", }, damage: "60+", }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card