1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19:18 +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/sm/sm3/53.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: "sm3-53",
localId: 53,
// Card informations
name: {
en: "Dusknoir",
fr: "Noctunoir",
},
hp: 150,
type: [
Type.PSYCHIC,
],
dexId: 477,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm3/53/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm3/53/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm3/53/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm3/53/high.png",
},
},
evolveFrom: {
en: "Dusclops",
fr: "Téraclope",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 65,
name: "nagimiso"
},
abilities: [{
id: 546,
type: AbilityType.TALENT,
name: {
en: "Dark Invitation",
fr: "Invitation Obscure",
},
text: {
en: "Once during your turn (before your attack), you may have your opponent reveal their hand. Put a Basic Pokémon you find there onto your opponent's Bench, and put 3 damage counters on that Pokémon.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez demander à votre adversaire de dévoiler sa main. Placez lun des Pokémon de base que vous y trouvez sur le Banc de votre adversaire, puis placez 3 marqueurs de dégâts sur ce Pokémon.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Mind Jack",
fr: "Emprise Mentale",
},
text: {
en: "This attack does 30 more damage for each of your opponent's Benched Pokémon.",
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Pokémon de Banc de votre adversaire.",
},
damage: 30
}],
weaknesses: [{
type: Type.DARKNESS,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
retreat: 3,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Burning Shadows",
code: "sm3"
}
}
export default card