1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 15:42:11 +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
958 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Champion\'s Path'
const card: Card = {
name: {
en: "Rotom Bike",
fr: "Moticyclette",
es: "Bici Rotom",
it: "Bici Rotom",
pt: "Bicicleta Rotom",
de: "Rotom-Rad"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Draw cards until you have 6 cards in your hand. Your turn ends.",
fr: "Piochez des cartes jusquà en avoir 6 en main. Votre tour se termine.",
es: "Roba cartas hasta que tengas 6 cartas en tu mano. Tu turno termina.",
it: "Pesca fino ad avere sei carte in mano. Il tuo turno finisce.",
pt: "Compre cartas até ter 6 cartas na sua mão. O seu turno acaba.",
de: "Ziehe so lange Karten, bis du 6 Karten auf deiner Hand hast. Dein Zug endet."
},
trainerType: "Item",
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card