1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

38 lines
1.4 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Lost Origin"
const card: Card = {
set: Set,
name: {
en: "Kabu",
fr: "Kabu",
es: "Naboru",
it: "Kabu",
pt: "Kabu",
de: "Kabu"
},
rarity: "Ultra Rare",
category: "Trainer",
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": false,
"reverse": false,
"holo": true
}
}
export default card