import { Card } from '../../../interfaces' import Set from '../Phantom Forces' const card: Card = { name: { en: "Murkrow", fr: "Cornèbre", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 198, ], hp: 60, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Darkness", ], name: { en: "Ambush", fr: "Embuscade", }, effect: { en: "Flip a coin. If heads, this attack does 10 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts supplémentaires.", }, damage: 10, }, { cost: [ "Darkness", "Colorless", "Colorless", ], name: { en: "Wing Attack", fr: "Cru-Aile", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card