1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

78 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Team Up'
const card: Card = {
name: {
en: "Spiritomb",
fr: "Spiritomb",
es: "Spiritomb",
it: "Spiritomb",
pt: "Spiritomb",
de: "Kryppuk"
},
illustrator: "HYOGONOSUKE",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
442,
],
hp: 70,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Spirit Compressor",
fr: "Réducteur dÂmes",
es: "Compresor de Espíritus",
it: "Compressore Spirituale",
pt: "Compressor Espiritual",
de: "Seelenkompressor"
},
effect: {
en: "Search your deck for up to 4 Pokémon and discard them. Then, shuffle your deck.",
fr: "Cherchez jusquà 4 Pokémon dans votre deck et défaussez-les. Mélangez ensuite votre deck.",
es: "Busca en tu baraja hasta 4 Pokémon y descártalos. Después, baraja las cartas de tu baraja.",
it: "Cerca nel tuo mazzo fino a quattro Pokémon e scartali. Poi rimischia le carte del tuo mazzo.",
pt: "Procure por até 4 Pokémon no seu baralho e descarte-os. Em seguida, embaralhe o seu baralho.",
de: "Durchsuche dein Deck nach bis zu 4 Pokémon und lege sie auf deinen Ablagestapel. Mische anschließend dein Deck."
},
},
{
cost: [
"Colorless",
],
name: {
en: "Spooky Shot",
fr: "Tir Effrayant",
es: "Disparo Embrujado",
it: "Colpomistero",
pt: "Tiro Assustador",
de: "Spukschuss"
},
damage: 20,
},
],
retreat: 1,
}
export default card