mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
79 lines
1.1 KiB
TypeScript
79 lines
1.1 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: "ecard1-75",
|
|
localId: 75,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Dragonair",
|
|
},
|
|
|
|
hp: 70,
|
|
|
|
type: [
|
|
Type.COLORLESS,
|
|
],
|
|
|
|
dexId: 148,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/ecard/ecard1/75/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/ecard/ecard1/75/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Dratini",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: "Kagemaru Himeno",
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.WATER,
|
|
Type.LIGHTNING
|
|
],
|
|
name: {
|
|
en: "Spiral Wave",
|
|
},
|
|
text: {
|
|
en: "Flip a coin until you get tails. This attack does 20 damage times the number of heads.",
|
|
},
|
|
damage: 20
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.UNCOMMON,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Expedition Base Set",
|
|
code: "ecard1"
|
|
}
|
|
}
|
|
|
|
export default card
|