1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +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

104
cards/bw/bw10/104.ts Normal file
View File

@ -0,0 +1,104 @@
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: "bw10-104",
localId: 104,
// Card informations
name: {
en: "Dusknoir",
fr: "Noctunoir",
},
hp: 130,
type: [
Type.PSYCHIC,
],
dexId: 477,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw10/104/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw10/104/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw10/104/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw10/104/high.png",
},
},
evolveFrom: {
en: "Dusclops",
fr: "Téraclope",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 6,
name: "Ayaka Yoshida"
},
abilities: [{
id: 610,
type: AbilityType.TALENT,
name: {
en: "Sinister Hand",
fr: "Main Sinistre",
},
text: {
en: "As often as you like during your turn (before your attack), you may move 1 damage counter from 1 of your opponent's Pokémon to another of your opponent's Pokémon.",
fr: "Autant de fois que vous le voulez pendant votre tour (avant votre attaque), vous pouvez déplacer 1 marqueur de dégâts de l'un des Pokémon de votre adversaire vers un autre des Pokémon de votre adversaire.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Shadow Punch",
fr: "Poing Ombre",
},
text: {
en: "This attack's damage isn't affected by Resistance.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.",
},
damage: 60
}],
weaknesses: [{
type: Type.DARKNESS,
value: "×2"
}],
retreat: 3,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Plasma Blast",
code: "bw10"
}
}
export default card