1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon 6ca1ae94ed
Updated Cards to use new Rarities
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 13:58:48 +02:00

95 lines
1.6 KiB
TypeScript

import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
const card: Card = {
// ids
id: "dpp-DP33",
localId: "DP33",
// Card informations
name: {
en: "Dusknoir",
},
hp: 130,
type: [
Type.PSYCHIC,
],
dexId: 477,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dpp/DP33/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dpp/DP33/high",
},
},
evolveFrom: {
en: "Dusclops",
},
tags: [
Tag.STAGE2,
],
illustrator: "Kent Kanetsuna",
abilities: [{
id: 839,
type: AbilityType.POKEPOWER,
name: {
en: "Dark Hide",
},
text: {
en: "Once during your turn (before your attack), you may flip a coin. If heads, look at your opponent's hand, choose a Pokémon you find there, and put it on the bottom of his or her deck. This power can't be used if Dusknoir is affected by a Special Condition.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Reaper Pulse",
},
text: {
en: "Move up to 2 damage counters from Dusknoir to 1 of your opponent's Benched Pokémon.",
},
damage: 70
}],
weaknesses: [{
type: Type.DARKNESS,
value: "+30"
}],
resistances: [{
type: Type.COLORLESS,
value: "-20"
}],
rarity: Rarity.COMMON,
category: Category.POKEMON,
set: {
name: "DP Black Star Promos",
code: "dpp"
}
}
export default card