1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-13 01:01:59 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

106
cards/pl/pl3/26.ts Normal file
View File

@@ -0,0 +1,106 @@
import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "pl3-26",
localId: 26,
// Card informations
name: {
en: "Dusknoir FB",
fr: "Noctunoir ",
},
hp: 90,
type: [
Type.PSYCHIC,
],
dexId: 477,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl3/26/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/26/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl3/26/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/26/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 114,
name: "Motofumi Fujiwara"
},
attacks: [{
cost: [
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Ghost Hand",
fr: "Main fantôme",
},
text: {
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: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Cursed Wrath",
fr: "Colère ensorcelée",
},
text: {
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: Type.DARKNESS,
value: "×2"
}],
resistances: [{
type: Type.COLORLESS,
value: "-20"
}],
retreat: 2,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Supreme Victors",
code: "pl3"
}
}
export default card