import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "ecard3-39", localId: 39, // Card informations name: { en: "Misdreavus", }, hp: 50, type: [ Type.PSYCHIC, ], dexId: 200, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard3/39/low", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard3/39/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Atsuko Nishida", attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Hypnoblast", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Asleep.", }, damage: 10 },{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Gift of Spite", }, text: { en: "Count the number of your Pokémon in play with damage counters on them. Put that many damage counters on the Defending Pokémon.", }, }], weaknesses: [{ type: Type.DARKNESS, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Skyridge", code: "ecard3" } } export default card