mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 02:42:09 +00:00
32 lines
2.9 KiB
TypeScript
32 lines
2.9 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Prismatic Evolutions"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Area Zero Underdepths",
|
|
fr: "Abîme Zéro",
|
|
es: "Caverna Abisal Cero",
|
|
pt: "Abismo da Área Zero",
|
|
it: "Grande Abisso Zero",
|
|
de: "Höhlensystem Null"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Each player who has any Tera Pokémon in play can have up to 8 Pokémon on their Bench.\n\nIf a player no longer has any Tera Pokémon in play, that player discards Pokémon from their Bench until they have 5. When this card leaves play, both players discard Pokémon from their Bench until they have 5, and the player who played this card discards first.",
|
|
fr: "Chaque joueur ayant au moins un Pokémon Téracristal en jeu peut avoir jusqu'à 8 Pokémon sur son Banc.\n\nSi un joueur n'a plus de Pokémon Téracristal en jeu, ce joueur-là défausse ses Pokémon de Banc jusqu'à en avoir 5. Lorsque cette carte n'est plus en jeu, les deux joueurs défaussent leurs Pokémon de Banc jusqu'à en avoir 5, et le joueur qui a joué cette carte défausse en premier.",
|
|
es: "Cada jugador que tenga algún Pokémon Teracristal en juego puede tener hasta 8 Pokémon en su Banca.\n\nSi un jugador ya no tiene ningún Pokémon Teracristal en juego, ese jugador descarta Pokémon de su Banca hasta que tenga 5. Cuando esta carta ya no esté en juego, cada jugador descarta Pokémon de su Banca hasta que tenga 5, y el jugador que haya jugado esta carta descarta en primer lugar.",
|
|
pt: "Cada jogador que tiver algum Pokémon Tera em jogo poderá ter até 8 Pokémon no próprio Banco.\n\nSe um jogador não tiver mais algum Pokémon Tera em jogo, aquele jogador descartará Pokémon do próprio Banco até ter 5. Quando esta carta sair de jogo, ambos os jogadores descartarão Pokémon do próprio Banco até terem 5, e o jogador que jogou esta carta descartará primeiro.",
|
|
it: "Ciascun giocatore che ha dei Pokémon Teracristal in gioco può avere fino a otto Pokémon in panchina.\n\nSe un giocatore non ha più Pokémon Teracristal in gioco, quel giocatore scarta dei Pokémon dalla sua panchina fino ad averne cinque. Quando questa carta viene rimossa dal gioco, entrambi i giocatori scartano dei Pokémon dalla propria panchina fino ad averne cinque e il giocatore che ha giocato questa carta scarta per primo.",
|
|
de: "Jeder Spieler, der mindestens 1 Terakristall-Pokémon im Spiel hat, kann bis zu 8 Pokémon auf seiner Bank haben.\n\nWenn ein Spieler keine Terakristall-Pokémon mehr im Spiel hat, legt jener Spieler so lange Pokémon von seiner Bank auf seinen Ablagestapel, bis er 5 Pokémon auf seiner Bank hat. Wenn diese Karte das Spiel verlässt, legen beide Spieler so lange Pokémon von ihrer Bank auf ihren Ablagestapel, bis sie 5 Pokémon auf ihrer Bank haben, und der Spieler, der diese Karte gespielt hat, legt als Erster ab."
|
|
},
|
|
|
|
trainerType: "Stadium",
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |