mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
* 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>
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
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
|