import { Card } from "../../../interfaces" import Set from "../Space-Time Smackdown" const card: Card = { set: Set, name: { en: "Murkrow" }, illustrator: "Yukiko Baba", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Darkness"], description: { en: "Feared and loathed by many, it is believed to bring misfortune to all those who see it at night." }, stage: "Basic", attacks: [{ name: { en: "Peck" }, damage: 20, cost: ["Darkness"] }], weaknesses: [{ type: "Lightning", value: "+20" }], retreat: 1 } export default card