import { Card } from '../../../interfaces' import Set from '../Mysterious Treasures' const card: Card = { name: { en: "Murkrow", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 198, ], hp: 60, types: [ "Darkness", ], stage: "Basic", attacks: [ { name: { en: "Swarm", }, effect: { en: "Search your deck for Murkrow and put it onto your Bench. Shuffle your deck afterward.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Hide Crowd", }, effect: { en: "Switch Murkrow with 1 of your Benched Pokémon.", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "+10" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], } export default card