1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 15:12:10 +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
1.3 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 '../Rebel Clash'
const card: Card = {
name: {
en: "Dan",
fr: "Guido",
es: "Paco Legiado",
it: "Cicerone",
pt: "Dan",
de: "Stuart"
},
illustrator: "Hitoshi Ariga",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Draw 2 cards. You and your opponent play Rock-Paper-Scissors until someone wins. If you win, draw 2 more cards.",
fr: "Piochez 2 cartes. Jouez à pierre-ciseaux-feuille avec votre adversaire jusquà avoir un gagnant. Si vous gagnez, piochez 2 cartes supplémentaires.",
es: "Roba 2 cartas. Tu rival y tú jugáis a piedra, papel, tijeras hasta que gane uno de los dos. Si ganas tú, roba 2 cartas más.",
it: "Pesca due carte. Tu e il tuo avversario giocate a morra cinese finché uno dei due non vince. Se vinci, pesca altre due carte.",
pt: "Compre 2 cartas. Você e seu oponente jogam “pedra, papel e tesoura” até alguém vencer. Se você vencer, compre 2 cartas a mais.",
de: "Ziehe 2 Karten. Du und dein Gegner spielt Schere/Stein/Papier, bis jemand gewinnt. Wenn du gewinnst, ziehe 2 Karten mehr."
},
trainerType: "Supporter",
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card