1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

33 lines
1.1 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Rose Tower",
fr: "Shehroz Tower",
es: "Torre Rose",
it: "Rose Tower",
pt: "Torre Rossi",
de: "Rose Tower"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Once during each players turn, that player may draw cards until they have 3 cards in their hand.",
fr: "Une fois pendant le tour de chaque joueur, ce joueur peut piocher des cartes jusquà en avoir 3 en main.",
es: "Una vez durante el turno de cada jugador, ese jugador puede robar cartas hasta que tenga 3 cartas en su mano.",
it: "Una sola volta durante il turno di ciascun giocatore, quel giocatore può pescare fino ad avere tre carte in mano.",
pt: "Uma vez durante o turno de cada jogador, aquele jogador poderá comprar cartas até ter 3 cartas na própria mão.",
de: "Einmal während des Zuges jedes Spielers kann jener Spieler so lange Karten ziehen, bis er 3 Karten auf der Hand hat."
},
trainerType: "Stadium",
regulationMark: "D"
}
export default card