mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
76 lines
871 B
TypeScript
76 lines
871 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Crystal Guardians'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Duskull",
|
||
fr: "Skelenox",
|
||
de: "Zwirrlicht"
|
||
},
|
||
illustrator: "Yukiko Baba",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
355,
|
||
],
|
||
hp: 40,
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Collect",
|
||
fr: "Collectionner",
|
||
de: "Sammeln"
|
||
},
|
||
effect: {
|
||
en: "Draw a card.",
|
||
fr: "Piochez 1 carte.",
|
||
de: "Ziehe 1 Karte."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
],
|
||
name: {
|
||
en: "Super Psy Bolt",
|
||
fr: "Super psy",
|
||
de: "Super-Psischlag"
|
||
},
|
||
|
||
damage: 10,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|