1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 05:29:55 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

40 lines
2.2 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Rare Fossil",
fr: "Fossile Rare",
es: "Fósil Raro",
it: "Fossile Raro",
pt: "Fóssil Raro",
de: "Seltenes Fossil"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Play this card as if it were a 70-HP Basic Colorless Pokémon. At any time during your turn, you may discard this card from play.\n\n \n\nThis card cant be affected by any Special Conditions, and it cant retreat.\n\n \n\n ",
fr: "Jouez cette carte comme si cétait un Pokémon Colorless de base avec 70 PV. Nimporte quand pendant votre tour, vous pouvez défausser cette carte du jeu.\n\n \n\n\nCette carte ne peut être affectée par aucun État Spécial, et elle ne peut pas battre en retraite.",
es: "Juega esta carta como si fuera un Pokémon Colorless Básico de 70 PS. En cualquier momento durante tu turno, puedes descartar esta carta del juego.\n\n\n\n \n\n\n\nEsta carta \n\nno puede verse afectada por ninguna Condición Especial y no puede retirarse.\n\n\n\n \n\n\n\n ",
it: "Gioca questa carta come se fosse un Pokémon Base Colorless con 70 PS. Durante il tuo turno, in qualsiasi momento, puoi scartare questa carta dal gioco.\n\n\n\n \n\n\n\nQuesta carta non può essere influenzata da condizioni speciali e non può ritirarsi.\n\n\n\n\n\n \n\n\n\n ",
pt: "Jogue esta carta como se fosse um Pokémon Colorless Básico com PS 70. A qualquer momento, durante o seu turno, você poderá descartar esta carta do jogo.\n\n\n\n \n\nEsta carta não pode ser afetada por quaisquer Condições Especiais e não pode recuar.\n\n\n\n\n\n \n\n\n\n ",
de: "Spiele diese Karte, als ob sie ein Basis-Colorless-Pokémon mit 70 KP wäre. Du kannst diese Karte jederzeit während deines Zuges aus dem Spiel nehmen und auf deinen Ablagestapel legen.\n\n\n\nDiese Karte kann von keinen Speziellen Zuständen betroffen werden und sich nicht zurückziehen.\n\n\n \n\n "
},
trainerType: "Item",
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card