1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

42 lines
1.2 KiB
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 '../Evolutions'
const card: Card = {
name: {
en: "Brocks Grit",
fr: "Vaillance de Pierre",
es: "Valentía de Brock",
it: "Tenacia di Brock",
pt: "Valentia do Brock",
de: "Rockos Durchhaltevermögen"
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Choisissez une combinaison de 6 cartes de Pokémon et dÉnergies de base dans votre pile de défausse et mélangez-les avec votre deck.",
en: "Shuffle 6 in any combination of Pokémon and basic Energy cards from your discard pile into your deck.",
es: "Pon, en cualquier combinación, 6 cartas de Pokémon y de Energía Básica de tu pila de descartes en tu baraja y barájalas todas.",
it: "Rimischia sei carte Pokémon e Energia base, in qualsiasi combinazione, dalla tua pila degli scarti nel tuo mazzo.",
pt: "Embaralhe qualquer combinação de 6 cards entre Pokémon e Energia básica da sua pilha de descarte para o seu baralho.",
de: "Mische eine beliebige Kombination aus 6 Pokémon- und Basis-Energiekarten von deinem Ablagestapel zurück in dein Deck."
},
trainerType: "Supporter",
}
export default card