1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 15:42:11 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

88 lines
1.3 KiB
TypeScript

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: "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.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw11/87/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 9,
name: "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