import { Card } from '../../../interfaces' import Set from '../Power Keepers' const card: Card = { name: { en: "Medicham", }, illustrator: "Tomoaki Imakuni", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 308, ], hp: 80, types: [ "Fighting", ], evolveFrom: { en: "Meditite", }, stage: "Stage1", abilities: [ { type: "Poke-BODY", name: { en: "Vigorous Aura", }, effect: { en: "As long as Medicham is your Active Pokémon, attacks by each player's Active Pokémon do 10 more damage to any Active Pokémon (before applying Weakness and Resistance).", }, }, ], attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Punch", }, damage: 30, }, { cost: [ "Fighting", "Fighting", "Colorless", ], name: { en: "Rolling Kick", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 40, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card