import { Card } from '../../../interfaces' import Set from '../Deoxys' const card: Card = { name: { en: "Duskull", }, illustrator: "Tomoko Wakai", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 355, ], hp: 40, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Paralyzing Gaze", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Will-o'-the-wisp", }, damage: 20, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card