import { Card } from '../../../interfaces' import Set from '../Burning Shadows' const card: Card = { name: { en: "Duskull", fr: "Skelénox", }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 355, ], hp: 60, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Dark Guidance", fr: "Conseiller Obscur", }, effect: { 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: [ "Psychic", "Colorless", ], name: { en: "Spooky Shot", fr: "Tir Effrayant", }, damage: 20, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card