1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 21:02:15 +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.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 Waters",
fr: "Tour de lEau",
es: "Torre de las Aguas",
it: "Torre Acqua",
pt: "Torre das Águas",
de: "Turm des Wassers"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "The Retreat Cost of each Rapid Strike Pokémon in play (both yours and your opponents) is ColorlessColorless less.",
fr: "Le Coût de Retraite de chaque Pokémon Mille Poings en jeu (les vôtres et ceux de votre adversaire) est diminué de ColorlessColorless.",
es: "El Coste de Retirada de cada Pokémon Golpe Fluido en juego (tanto tuyos como de tu rival) es de ColorlessColorless menos.",
it: "Il costo di ritirata di ciascun Pokémon Colpo Rapido in gioco, sia tuoi che del tuo avversario, è ridotto di ColorlessColorless.",
pt: "O custo de Recuo de cada Pokémon Golpe Fluido em jogo (seus e do seu oponente) é ColorlessColorless a menos.",
de: "Die Rückzugskosten aller Fließender-Angriff-Pokémon im Spiel (deiner und der deines Gegners) verringern sich um ColorlessColorless."
},
regulationMark: "E",
trainerType: "Stadium",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card