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: "sm3-51", localId: 51, // Card informations name: { en: "Duskull", fr: "Skelénox", }, hp: 60, type: [ Type.PSYCHIC, ], dexId: 355, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm3/51/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm3/51/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm3/51/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm3/51/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 2, name: "Midori Harada" }, attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Dark Guidance", fr: "Conseiller Obscur", }, text: { en: "Put a Basic Pokémon from your discard pile onto your Bench.", fr: "Prenez un Pokémon de base dans votre pile de défausse et placez-le sur votre Banc.", }, },{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Spooky Shot", fr: "Tir Effrayant", }, damage: 20 }], weaknesses: [{ type: Type.DARKNESS, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Burning Shadows", code: "sm3" } } export default card