1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

79 lines
1.1 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 '../Supreme Victors'
const card: Card = {
name: {
en: "Dusknoir FB",
fr: "Noctunoir ",
},
illustrator: "Motofumi Fujiwara",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
477,
],
hp: 90,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Ghost Hand",
fr: "Main fantôme",
},
effect: {
en: "Put 1 damage counter on 1 of your Benched Pokémon.",
fr: "Placez 1 marqueur de dégât sur 1 de vos Pokémon de Banc.",
},
damage: 30,
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Cursed Wrath",
fr: "Colère ensorcelée",
},
effect: {
en: "Does 10 damage times the number of Pokémon SP in your discard pile.",
fr: "Inflige 10 dégâts multipliés par le nombre de Pokémon SP dans votre pile de défausse.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Colorless",
value: "-20"
},
],
retreat: 2,
}
export default card