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

99 lines
1.7 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: "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.png",
fr: "https://assets.tcgdex.net/fr/xy/xy4/55/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy4/55/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy4/55/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 116,
name: "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