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