1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

81 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Sandstorm'
const card: Card = {
name: {
en: "Duskull",
fr: "Skelenox",
de: "Zwirrlicht"
},
illustrator: "Aya Kusube",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
355,
],
hp: 40,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Haunt",
fr: "Hanter",
de: "Haunt"
},
effect: {
en: "Put 1 damage counter on the Defending Pokémon.",
fr: "Placez un marqueur de dégât sur le Pokémon Défenseur.",
de: "Put 1 damage counter on the Defending Pokémon."
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Dark Mind",
fr: "Sombre-esprit",
de: "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.)",
fr: "Inflige 10 dégâts à un des Pokémon du Banc de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon du Banc).",
de: "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