1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

30 lines
1.3 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldean Fates"
const card: Card = {
set: Set,
name: {
en: "Ultra Ball",
fr: "Hyper Ball",
es: "Ultra Ball",
it: "Ultra Ball",
pt: "Ultra Bola"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "You can use this card only if you discard 2 other cards from your hand.\n\nSearch your deck for a Pokémon, reveal it, and put it into your hand. Then, shuffle your deck.",
fr: "Vous ne pouvez utiliser cette carte que si vous défaussez 2 autres cartes de votre main.\nCherchez dans votre deck un Pokémon, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck.",
es: "Puedes usar esta carta solo si descartas otras 2 cartas de tu mano.\nBusca en tu baraja 1 Pokémon, enséñalo y ponlo en tu mano. Después, baraja las cartas de tu baraja.",
it: "Puoi usare questa carta solo se scarti altre due carte che hai in mano.\nCerca nel tuo mazzo un Pokémon, mostralo e aggiungilo alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
pt: "Você só pode usar esta carta se descartar outras 2 cartas da sua mão.\nProcure por um Pokémon no seu baralho, revele-o e coloque-o na sua mão. Em seguida, embaralhe o seu baralho."
},
trainerType: "Item",
regulationMark: "G"
}
export default card