import { Card } from "../../../interfaces" import Set from "../Extradimensional Crisis" const card: Card = { set: Set, name: { en: "Meditite" }, illustrator: "Yukiko Baba", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Fighting"], description: { en: "It never skips its daily yoga training. It heightens\nits inner strength through meditation." }, stage: "Basic", attacks: [{ name: { en: "Trip Over" }, damage: 10, cost: ["Fighting"], effect: { en: "Flip a coin. If heads, this attack does 20 more damage." } }], weaknesses: [{ type: "Psychic", value: "+20" }], retreat: 1 } export default card