mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 23:02:09 +00:00
38 lines
1.8 KiB
TypeScript
38 lines
1.8 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Brilliant Stars"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Café Master",
|
|
fr: "Barista",
|
|
es: "Barista",
|
|
it: "Barista",
|
|
pt: "Mestre do Café",
|
|
de: "Barista"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Choose up to 3 of your Benched Pokémon. For each of those Pokémon, search your deck for a different type of basic Energy card and attach it to that Pokémon. Then, shuffle your deck. Your turn ends.",
|
|
fr: "Choisissez jusqu'à 3 de vos Pokémon de Banc. Pour chacun de ces Pokémon, cherchez dans votre deck une carte Énergie de base de type différent, puis attachez-la à ce Pokémon-là. Mélangez ensuite votre deck. Votre tour se termine.",
|
|
es: "Elige hasta 3 de tus Pokémon en Banca. Para cada uno de esos Pokémon, busca en tu baraja 1 carta de Energía Básica de tipo diferente y únela a ese Pokémon. Después, baraja las cartas de tu baraja. Tu turno termina.",
|
|
it: "Scegli fino a tre dei tuoi Pokémon in panchina. Per ognuno di essi, cerca nel tuo mazzo una carta Energia base di tipo diverso e assegnala a quel Pokémon. Poi rimischia le carte del tuo mazzo. Il tuo turno finisce.",
|
|
pt: "Escolha até 3 dos seus Pokémon no Banco. Para cada um daqueles Pokémon, procure por 1 carta de Energia básica de tipo diferente no seu baralho e ligue-a àquele Pokémon. Em seguida, embaralhe o seu baralho. O seu turno acaba.",
|
|
de: "Wähle bis zu 3 Pokémon auf deiner Bank. Durchsuche für jedes jener Pokémon dein Deck nach 1 Basis-Energiekarte verschiedenen Typs und lege sie an jenes Pokémon an. Mische anschließend dein Deck. Dein Zug endet."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
regulationMark: "E",
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |