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

98 lines
2.1 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: "dp6-16",
localId: 16,
// Card informations
name: {
en: "Spiritomb",
fr: "Spiritomb",
},
hp: 70,
type: [
Type.PSYCHIC,
],
dexId: 442,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp6/16/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp6/16/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp6/16/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp6/16/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 1,
name: "Ryo Ueda"
},
abilities: [{
id: 379,
type: AbilityType.POKEPOWER,
name: {
en: "Curse Breath",
fr: "Haleine maléfique",
},
text: {
en: "Once during your turn, when you put Spiritomb from your hand onto your Bench, you may put 1 damage counter on all Pokémon that already have any damage counters on them (both yours and your opponent's). You can't use more than 1 Curse Breath Poké-Power each turn.",
fr: "Une seule fois lors de votre tour, lorsque vous placez Spiritomb de votre main sur votre Banc, vous pouvez placer 1 marqueur de dégât sur tous les Pokémon possédant déjà des marqueurs de dégât (les vôtres et ceux de votre adversaire). Vous ne pouvez pas utiliser plus d'1 Poké-Power Haleine maléfique par tour.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC
],
name: {
en: "Transfer Pain",
fr: "Transfert de douleur",
},
text: {
en: "Move 1 damage counter from 1 of your Pokémon to 1 of your opponent's Pokémon.",
fr: "Déplacez 1 marqueur de dégât d'1 de vos Pokémon sur 1 des Pokémon de votre adversaire.",
},
}],
resistances: [{
type: Type.COLORLESS,
value: "-20"
}],
retreat: 2,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Legends Awakened",
code: "dp6"
}
}
export default card