import { Card } from '../../../interfaces' import Set from '../Power Keepers' const card: Card = { name: { en: "Meditite", }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 307, ], hp: 40, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Psyshock", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10, }, { cost: [ "Fighting", ], name: { en: "Cross Chop", }, effect: { en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage.", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card