import { Card } from '../../../interfaces' import Set from '../Power Keepers' const card: Card = { name: { en: "Duskull", fr: "Skélénox", de: "Zwirrlicht" }, 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", fr: "Attaque surprise", de: "Überraschungsangriff" }, effect: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c'est pile, cette attaque est sans effet.", de: "Wirf 1 Münze. Bei \"Zahl\" hat dieser Angriff keine Auswirkungen." }, damage: 30, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card