import { Card } from '../../../interfaces' import Set from '../Dragons Exalted' const card: Card = { name: { en: "Murkrow", fr: "Cornèbre", es: "Murkrow", it: "Murkrow", pt: "Murkrow", de: "Kramurx" }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 198, ], hp: 70, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Peck", fr: "Picpic", }, damage: 10, }, { cost: [ "Darkness", "Colorless", ], name: { en: "Wing Attack", fr: "Cru-Aile", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card