mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-02 15:42:11 +00:00
* Updated Kalos Starter Set data Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed XY set Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed some more XY sets Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Added the rest of the SWSH variants Signed-off-by: Avior <florian.bouillon@delta-wings.net>
40 lines
1.8 KiB
TypeScript
40 lines
1.8 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Turffield Stadium",
|
||
fr: "Stade de Greenbury",
|
||
es: "Estadio de Hoyuelo",
|
||
it: "Stadio di Turffield",
|
||
pt: "Estádio de Turffield",
|
||
de: "Turffield-Stadion"
|
||
},
|
||
|
||
illustrator: "aky CG Works",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
set: Set,
|
||
|
||
effect: {
|
||
en: "Once during each player’s turn, that player may search their deck for an Evolution Grass Pokémon, reveal it, and put it into their hand. Then, that player shuffles their deck.",
|
||
fr: "Une fois pendant le tour de chaque joueur, ce joueur peut chercher dans son deck un Pokémon Grass Évolutif, le montrer, puis l’ajouter à sa main. Ce joueur mélange ensuite son deck.",
|
||
es: "Una vez durante el turno de cada jugador, ese jugador puede buscar en su baraja 1 Pokémon Grass Evolución, enseñarlo y ponerlo en su mano. Después, ese jugador baraja las cartas de su baraja.",
|
||
it: "Una sola volta durante il turno di ciascun giocatore, quel giocatore può cercare nel suo mazzo un Pokémon Evoluzione Grass, mostrarlo e aggiungerlo alle carte che ha in mano. Poi quel giocatore rimischia le carte del suo mazzo.",
|
||
pt: "Uma vez durante o turno de cada jogador, aquele jogador poderá procurar por 1 Pokémon Grass de Evolução no próprio baralho, revelá-lo e colocá-lo na própria mão. Em seguida, aquele jogador embaralha o próprio baralho.",
|
||
de: "Einmal während des Zuges jedes Spielers kann jener Spieler sein Deck nach 1 Entwicklungs-Grass-Pokémon durchsuchen, es seinem Gegner zeigen und auf seine Hand nehmen. Anschließend mischt jener Spieler sein Deck."
|
||
},
|
||
|
||
trainerType: "Stadium",
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
}
|
||
}
|
||
|
||
export default card
|