mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
42 lines
1.4 KiB
TypeScript
42 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Primal Clash'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Repeat Ball",
|
|
fr: "Bis Ball",
|
|
es: "Acopio Ball",
|
|
it: "Bis Ball",
|
|
pt: "Bola da Repetição",
|
|
de: "Wiederball"
|
|
},
|
|
illustrator: "Toyste Beach",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Cherchez dans votre deck un Pokémon du même nom que l'un de vos Pokémon en jeu, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck.",
|
|
en: "Search your deck for a Pokémon with the same name as 1 of your Pokémon in play, reveal it, and put it into your hand. Shuffle your deck afterward.",
|
|
es: "Busca en tu baraja 1 Pokémon con el mismo nombre que 1 de tus Pokémon en juego, enséñalo y ponlo en tu mano. Baraja las cartas de tu baraja después.",
|
|
it: "Cerca nel tuo mazzo un Pokémon con lo stesso nome di uno dei tuoi Pokémon in gioco, mostralo e aggiungilo alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
|
pt: "Procure em seu baralho um Pokémon com o mesmo nome de 1 de seus Pokémon em jogo, revele-o e coloque-o em sua mão. Em seguida, embaralhe seus cards.",
|
|
de: "Durchsuche dein Deck nach 1 Pokémon mit demselben Namen wie 1 deiner Pokémon im Spiel, zeige es deinem Gegner und nimm es auf deine Hand. Mische anschließend dein Deck."
|
|
},
|
|
trainerType: "Item",
|
|
|
|
}
|
|
|
|
export default card
|