import { Card } from '../../../interfaces' import Set from '../Skyridge' const card: Card = { name: { en: "Murkrow", }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 198, ], hp: 50, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Darkness", ], name: { en: "Evil Eye", }, effect: { en: "Choose 1 of your opponent's Pokémon. Put a damage counter on that Pokémon.", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Blindside", }, effect: { en: "Choose 1 of your opponent's Pokémon that has a damage counter on it. This attack does 20 damage to that Pokémon. Don't apply Weakness and Resistance.", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card