1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon e21ea0646e
Added BW translation (#65)
* Added basic translation
IT will need a second checkup by another source
as attacks are not correcly ordered

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Removed bugged file

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-09-02 12:01:58 +02:00

42 lines
1.1 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 '../Boundaries Crossed'
const card: Card = {
name: {
en: "Hugh",
fr: "Matis",
es: "Matís",
it: "Toni",
pt: "Hugh",
de: "Matisse"
},
illustrator: "Yusuke Ohmura",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Chaque joueur pioche ou défausse des cartes jusquà avoir 5 cartes dans sa main. (Votre adversaire le fait en premier.)",
en: "Each player either draws or discards cards until he or she has 5 cards in his or her hand. (Your opponent does this first.)",
es: "Cada jugador roba o descarta cartas hasta tener 5 cartas en su mano. (Tu rival lo hace primero.)",
it: "Ciascun giocatore pesca o scarta carte fino ad avere cinque carte in mano. Inizia il tuo avversario.",
pt: "Cada jogador compra ou descarta cards até ter 5 cards na mão. (Seu oponente faz isso primeiro.)",
de: "Jeder Spieler muss so viele Karten ziehen oder ablegen, bis er 5 Karten auf der Hand hat. (Dein Gegner beginnt.)"
},
trainerType: "Supporter",
}
export default card