1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

40 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Tower of Darkness",
fr: "Tour des Ténèbres",
es: "Torre de las Sombras",
it: "Torre Buio",
pt: "Torre das Sombras",
de: "Turm des Unlichts"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Once during each players turn, that player may draw 2 cards. In order to use this effect, that player must discard a Single Strike card from their hand.",
fr: "Une fois pendant le tour de chaque joueur, ce joueur peut piocher 2 cartes. Afin dutiliser cet effet, ce joueur doit défausser une carte Poing Final de sa main.",
es: "Una vez durante el turno de cada jugador, ese jugador puede robar 2 cartas. Para poder usar este efecto, ese jugador debe descartar 1 carta de Golpe Brusco de su mano.",
it: "Una sola volta durante il turno di ciascun giocatore, quel giocatore può pescare due carte. Per usare questo effetto, quel giocatore deve scartare una carta Colpo Singolo che ha in mano.",
pt: "Uma vez durante o turno de cada jogador, aquele jogador poderá comprar 2 cartas. Para usar este efeito, aquele jogador deverá descartar 1 carta Golpe Decisivo da própria mão.",
de: "Einmal während des Zuges jedes Spielers, kann jener Spieler 2 Karten ziehen. Um diesen Effekt einzusetzen, muss jener Spieler 1 Fokussierter-Angriff-Karte von seiner Hand auf seinen Ablagestapel legen."
},
regulationMark: "E",
trainerType: "Stadium",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card