import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Duskull", }, illustrator: "Aya Kusube", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 355, ], hp: 40, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Haunt", }, effect: { en: "Put 1 damage counter on the Defending Pokémon.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Dark Mind", }, effect: { en: "Does 10 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 10, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fire", value: "-30" }, ], } export default card