1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 02:07:50 +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

84 lines
1.2 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: "bw11-87",
localId: 87,
// Card informations
name: {
en: "Spiritomb",
},
hp: 80,
type: [
Type.DARKNESS,
],
dexId: 442,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw11/87/low",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw11/87/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: "Mitsuhiro Arita",
abilities: [{
id: 1440,
type: AbilityType.TALENT,
name: {
en: "Sealing Scream",
},
text: {
en: "Each player can't play any ACE SPEC cards from his or her hand.",
}
}],
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Hexed Mirror",
},
text: {
en: "Shuffle your hand into your deck. Then, draw a number of cards equal to the number of cards in your opponent's hand.",
},
}],
rarity: Rarity.UNCOMMON,
category: Category.POKEMON,
set: {
name: "Legendary Treasures",
code: "bw11"
}
}
export default card