1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

40 lines
1.4 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Champion\'s Path'
const card: Card = {
name: {
en: "Kabu",
fr: "Kabu",
es: "Naboru",
it: "Kabu",
pt: "Kabu",
de: "Kabu"
},
illustrator: "take",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Shuffle your hand into your deck. Then, draw 4 cards. If your Active Pokémon is your only Pokémon in play, draw 8 cards instead.",
fr: "Mélangez votre main avec votre deck. Ensuite, piochez 4 cartes. Si votre Pokémon Actif est votre seul Pokémon en jeu, piochez 8 cartes à la place.",
es: "Pon las cartas de tu mano en tu baraja y barájalas todas. Después, roba 4 cartas. Si tu Pokémon Activo es tu único Pokémon en juego, roba 8 cartas en vez de 4.",
it: "Rimischia le carte che hai in mano nel tuo mazzo. Poi pesca quattro carte. Se il tuo Pokémon attivo è il tuo unico Pokémon in gioco, invece pescane otto.",
pt: "Embaralhe a sua mão no seu baralho. Em seguida, compre 4 cartas. Se o seu Pokémon Ativo for o seu único Pokémon em jogo, compre 8 cartas ao invés de 4.",
de: "Mische deine Handkarten in dein Deck. Ziehe anschließend 4 Karten. Wenn dein Aktives Pokémon dein einziges Pokémon im Spiel ist, ziehe stattdessen 8 Karten."
},
trainerType: "Supporter",
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card