1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

42 lines
936 B
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 '../Unified Minds'
const card: Card = {
name: {
en: "Blues Tactics",
fr: "Tactiques de Blue",
es: "Tácticas de Azul",
it: "Tattica di Blu",
pt: "Tática do Blue",
de: "Blaus Taktik"
},
illustrator: "Naoki Saito",
rarity: "Ultra Rare",
category: "Trainer",
set: Set,
effect: {
fr: "À la fin de ce tour, piochez des cartes jusquà ce que vous ayez 8 cartes en main.",
en: "At the end of this turn, draw cards until you have 8 cards in your hand.",
es: "Al final de este turno, roba cartas hasta que tengas 8 cartas en tu mano.",
it: "Alla fine di questo turno, pesca fino ad avere otto carte in mano.",
pt: "No final desta vez de jogar, compre cartas até ter 8 cartas na sua mão.",
de: "Ziehe am Ende dieses Zuges so lang Karten, bis du 8 Karten auf deiner Hand hast."
},
trainerType: "Supporter",
}
export default card