1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,78 @@
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