1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 05:09:53 +00:00

40 lines
595 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Duskull"
},
illustrator: "ryoma uratsuka",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
en: "If it finds bad children who won't listen to their<br />parents, it will spirit them away—or so it's said."
},
stage: "Basic",
attacks: [{
name: {
en: "Will-O-Wisp"
},
damage: 20,
cost: ["Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 1
}
export default card