1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

38 lines
1.5 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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Bruno",
fr: "Aldo",
es: "Bruno",
it: "Bruno",
pt: "Bruno",
de: "Bruno"
},
rarity: "Secret Rare",
category: "Trainer",
effect: {
en: "Shuffle your hand into your deck. Then, draw 4 cards. If any of your Pokémon were Knocked Out during your opponents last turn, draw 7 cards instead.",
fr: "Mélangez votre main avec votre deck. Ensuite, piochez 4 cartes. Si au moins lun de vos Pokémon a été mis K.O. pendant le dernier tour de votre adversaire, piochez 7 cartes à la place.",
es: "Pon las cartas de tu mano en tu baraja y barájalas todas. Después, roba 4 cartas. Si alguno de tus Pokémon quedó Fuera de Combate durante el último turno de tu rival, roba 7 cartas en vez de 4.",
it: "Rimischia le carte che hai in mano nel tuo mazzo. Poi pesca quattro carte. Se uno dei tuoi Pokémon è stato messo KO durante lultimo turno del tuo avversario, invece pescane sette.",
pt: "Embaralhe a sua mão no seu baralho. Em seguida, compre 4 cartas. Se algum dos seus Pokémon tiver sido Nocauteado durante o último turno do seu oponente, compre 7 cartas ao invés de 4.",
de: "Mische deine Handkarten in dein Deck. Ziehe anschließend 4 Karten. Wenn mindestens 1 deiner Pokémon während des letzten Zuges deines Gegners kampfunfähig wurde, ziehe stattdessen 7 Karten."
},
trainerType: "Supporter",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card