import { Card } from '../../../interfaces' import Set from '../Mysterious Treasures' const card: Card = { name: { en: "Honchkrow", }, illustrator: "Kazuyuki Kano", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 430, ], hp: 90, types: [ "Darkness", ], evolveFrom: { en: "Murkrow", }, stage: "Stage1", abilities: [ { type: "Poke-BODY", name: { en: "Dark Genes", }, effect: { en: "As long as Honchkrow has the Energy necessary to use its attack, each of your Murkrow can use Honchkrow's attack as its own without the necessary Energy to use that attack.", }, }, ], attacks: [ { cost: [ "Darkness", "Darkness", "Colorless", ], name: { en: "Dark Wing Flaps", }, effect: { en: "Choose 1 card from your opponent's hand without looking. Look at the card you chose, then have your opponent shuffle that card into his or her deck.", }, damage: 50, }, ], weaknesses: [ { type: "Lightning", value: "+20" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], } export default card