import { Card } from '../../../interfaces' import Set from '../Power Keepers' const card: Card = { name: { en: "Duskull", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 355, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", "Colorless", ], name: { en: "Surprise Attack", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", }, damage: 30, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card