import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "ecard3-79", localId: 79, // Card informations name: { en: "Murkrow", }, hp: 50, type: [ Type.DARKNESS, ], dexId: 198, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard3/79/low.png", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard3/79/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 18, name: "Tomokazu Komiya" }, attacks: [{ cost: [ Type.DARKNESS ], name: { en: "Evil Eye", }, text: { en: "Choose 1 of your opponent's Pokémon. Put a damage counter on that Pokémon.", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Blindside", }, text: { 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: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Skyridge", code: "ecard3" } } export default card