1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00

38 lines
1.6 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Brilliant Stars"
const card: Card = {
set: Set,
name: {
en: "Gloria",
fr: "Gloria",
es: "Gloria",
it: "Gloria",
pt: "Glória",
de: "Gloria"
},
rarity: "Ultra Rare",
category: "Trainer",
effect: {
en: "Search your deck for up to 3 Basic Pokémon that don't have a Rule Box and put them onto your Bench. Then, shuffle your deck. (Pokémon V, Pokémon-GX, etc. have Rule Boxes.)",
fr: "Cherchez dans votre deck jusqu'à 3 Pokémon de base n'ayant pas d'encadré Règle, puis placez-les sur votre Banc. Mélangez ensuite votre deck. (Les Pokémon-V, Pokémon-GX, etc. ont des encadrés Règle.)",
es: "Busca en tu baraja hasta 3 Pokémon Básicos que no tengan un recuadro de regla y ponlos en tu Banca. Después, baraja las cartas de tu baraja. (Pokémon V, Pokémon-GX, etc. tienen recuadros de regla).",
it: "Cerca nel tuo mazzo fino a tre Pokémon Base che non hanno una regola speciale e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo. I Pokémon-V, i Pokémon-GX, ecc. hanno regole speciali.",
pt: "Procure por até 3 Pokémon Básicos no seu baralho que não tenham uma Caixa de Regras e coloque-os no seu Banco. Em seguida, embaralhe o seu baralho (Pokémon V, Pokémon-GX, etc. têm Caixas de Regras).",
de: "Durchsuche dein Deck nach bis zu 3 Basis-Pokémon, die kein Regelfeld haben, und lege sie auf deine Bank. Mische anschließend dein Deck. (Pokémon-V, Pokémon-GX, usw. haben Regelfelder.)"
},
trainerType: "Supporter",
regulationMark: "E",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card