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: "hgss2-54", localId: 54, // Card informations name: { en: "Misdreavus", fr: "Feuforêve", }, hp: 50, type: [ Type.PSYCHIC, ], dexId: 200, image: { low: { en: "https://assets.tcgdex.net/en/hgss/hgss2/54/low.png", fr: "https://assets.tcgdex.net/fr/hgss/hgss2/54/low.png", }, high: { en: "https://assets.tcgdex.net/en/hgss/hgss2/54/high.png", fr: "https://assets.tcgdex.net/fr/hgss/hgss2/54/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 54, name: "Hideaki Hakozaki" }, attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Sharpshooting", fr: "Tir de précision", }, text: { en: "Choose 1 of your opponent's Pokémon. This attack does 10 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Choisissez l'un des Pokémon de votre adversaire. Cette attaque inflige 10 dégâts à ce Pokémon. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, }], weaknesses: [{ type: Type.DARKNESS, value: "×2" }], resistances: [{ type: Type.COLORLESS, value: "-20" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "HS—Unleashed", code: "hgss2" } } export default card