import { Card } from '../../../interfaces' import Set from '../Unified Minds' const card: Card = { name: { en: "Honchkrow", fr: "Corboss", }, illustrator: "Tomokazu Komiya", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 430, ], hp: 110, types: [ "Darkness", ], evolveFrom: { en: "Murkrow", fr: "Cornèbre", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Sharpshooting", fr: "Tir de Précision", }, effect: { en: "This attack does 30 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Cette attaque inflige 30 dégâts à l’un des Pokémon de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, }, { cost: [ "Darkness", ], name: { en: "Dark Cutter", fr: "Tranch’Obscur", }, damage: 60, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card