1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +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
1004 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.

import { Card } from '../../../interfaces'
import Set from '../Lost Thunder'
const card: Card = {
name: {
en: "Whitney",
fr: "Blanche",
es: "Blanca",
it: "Chiara",
pt: "Whitney",
de: "Bianka"
},
illustrator: "Sanosuke Sakuma",
rarity: "Ultra Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Piochez une carte. Ensuite, piochez 2 cartes pour chaque autre Blanche dans votre pile de défausse.",
en: "Draw a card. Then, draw 2 cards for each other Whitney in your discard pile.",
es: "Roba 1 carta. Después, roba 2 cartas por cada una de las otras cartas de Blanca en tu pila de descartes.",
it: "Pesca una carta. Poi pesca due carte per ogni altra Chiara nella tua pila degli scarti.",
pt: "Compre 1 carta. Em seguida, compre 2 cartas para cada uma das outras Whitney na sua pilha de descarte.",
de: "Ziehe 1 Karte. Ziehe anschließend 2 Karten für jede andere Bianka-Karte in deinem Ablagestapel."
},
trainerType: "Supporter",
}
export default card