1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 21:02:15 +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.7 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: "xy4-55",
localId: 55,
// Card informations
name: {
en: "Spiritomb",
fr: "Spiritomb",
},
hp: 70,
type: [
Type.DARKNESS,
],
dexId: 442,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy4/55/low",
fr: "https://assets.tcgdex.net/fr/xy/xy4/55/low",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy4/55/high",
fr: "https://assets.tcgdex.net/fr/xy/xy4/55/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: "PLANETA",
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "B Cancel",
fr: "Interruption B",
},
text: {
en: "Your opponent can't play any Pokémon from his or her hand to evolve the Defending Pokémon during his or her next turn.",
fr: "Votre adversaire ne peut pas jouer de Pokémon de sa main pour faire évoluer le Pokémon Défenseur pendant son prochain tour.",
},
damage: 10
},{
cost: [
Type.DARKNESS,
Type.COLORLESS
],
name: {
en: "Confuse Ray",
fr: "Onde Folie",
},
text: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Confused.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Confus.",
},
damage: 30
}],
retreat: 1,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Phantom Forces",
code: "xy4"
}
}
export default card