1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 13:39:54 +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
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Sun & Moon'
const card: Card = {
name: {
en: "Ilima",
fr: "Althéo",
es: "Liam",
it: "Liam",
pt: "Luan",
de: "Elima"
},
illustrator: "Sanosuke Sakuma",
rarity: "Ultra Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Chaque joueur mélange sa main avec son deck et lance une pièce. Si cest face, ce joueur pioche 6 cartes. Si cest pile, il pioche 3 cartes.",
en: "Each player shuffles their hand into their deck and flips a coin. If heads, that player draws 6 cards. If tails, they draw 3 cards.",
es: "Cada jugador pone las cartas de su mano en su baraja, las baraja todas y lanza 1 moneda. Si sale cara, ese jugador roba 6 cartas. Si sale cruz, roba 3 cartas.",
it: "Entrambi i giocatori mettono le carte che hanno in mano nel loro mazzo e lo rimischiano, poi lanciano una moneta. Se a un giocatore esce testa, pesca sei carte. Se gli esce croce, pesca tre carte.",
pt: "Cada jogador embaralha a própria mão no próprio baralho e joga 1 moeda. Se sair cara, o jogador comprará 6 cartas. Se sair coroa, o jogador comprará 3 cartas.",
de: "Jeder Spieler mischt seine Handkarten in sein Deck und wirft 1 Münze. Bei Kopf zieht der Spieler 6 Karten. Bei Zahl zieht der Spieler 3 Karten."
},
trainerType: "Supporter",
}
export default card