mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
92 lines
1.6 KiB
TypeScript
92 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: "base5-33",
|
|
localId: 33,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Dark Dragonair",
|
|
},
|
|
|
|
hp: 60,
|
|
|
|
type: [
|
|
Type.COLORLESS,
|
|
],
|
|
|
|
dexId: 148,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/base/base5/33/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/base/base5/33/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Dratini",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: "Kagemaru Himeno",
|
|
|
|
abilities: [{
|
|
id: 969,
|
|
type: AbilityType.POKEPOWER,
|
|
name: {
|
|
en: "Evolutionary Light",
|
|
},
|
|
text: {
|
|
en: "Once during your turn (before your attack), you may search your deck for an Evolution card. Show it to your opponent and put it into your hand. Shuffle your deck afterward. This power can't be used if Dark Dragonair is Asleep, Confused, or Paralyzed.",
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.COLORLESS,
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Tail Strike",
|
|
},
|
|
text: {
|
|
en: "Flip a coin. If heads, this attack does 20 damage plus 20 more damage; if tails, this attack does 20 damage.",
|
|
},
|
|
damage: 20
|
|
}],
|
|
|
|
|
|
|
|
resistances: [{
|
|
type: Type.PSYCHIC,
|
|
value: "-30"
|
|
}],
|
|
|
|
|
|
|
|
rarity: Rarity.UNCOMMON,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Team Rocket",
|
|
code: "base5"
|
|
}
|
|
}
|
|
|
|
export default card
|