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

38 lines
1.5 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Brilliant Stars"
const card: Card = {
set: Set,
name: {
en: "Team Yell's Cheer",
fr: "Encouragement de la Team Yell",
es: "Clamor del Team Yell",
it: "Tifo del Team Yell",
pt: "Torcida da Equipe Yell",
de: "Jubel von Team Yell"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Shuffle up to 3 in any combination of Pokémon and Supporter cards, except for Team Yell's Cheer, from your discard pile into your deck.",
fr: "Mélangez avec votre deck une combinaison d'un maximum de 3 Pokémon et cartes Supporter de votre pile de défausse, à l'exception d'Encouragement de la Team Yell.",
es: "Pon hasta 3 cartas de Pokémon y de Partidario, en cualquier combinación, excepto Clamor del Team Yell, de tu pila de descartes en tu baraja y barájalas todas.",
it: "Rimischia fino a tre Pokémon e carte Aiuto, a eccezione di Tifo del Team Yell, in qualsiasi combinazione dalla tua pila degli scarti nel tuo mazzo.",
pt: "Embaralhe até 3 cartas de Pokémon e de Apoiador, exceto por Torcida da Equipe Yell, da sua pilha de descarte no seu baralho em qualquer combinação.",
de: "Mische eine beliebige Kombination aus bis zu 3 Pokémon und Unterstützerkarten, außer Jubel von Team Yell, aus deinem Ablagestapel in dein Deck."
},
trainerType: "Supporter",
regulationMark: "F",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card