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

31 lines
1.4 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 '../Dark Explorers'
const card: Card = {
name: {
en: "Hooligans Jim & Cas",
fr: "Loubards Pit & Paul",
es: "Pandilleros Tim y Rick",
it: "Teppisti Bo & Brian",
pt: "Arruaceiros Jim & Cas",
de: "Rabauken Bob & Rob"
},
illustrator: "Masakazu Fukuda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
trainerType: "Supporter",
effect: {
en: "Flip a coin. If heads, choose 3 random cards from your opponents hand. Your opponent reveals those cards and shuffles them into his or her deck.",
fr: "Lancez une pièce. Si cest face, choisissez 3 cartes au hasard de la main de votre adversaire. Votre adversaire montre les cartes choisies et les mélange avec son deck.",
es: "Lanza una moneda. Si sale cara, elige 3 cartas aleatorias de la mano de tu rival. Tu rival enseña esas cartas, las pone en su baraja y las baraja todas.",
it: "Lancia una moneta. Se esce testa, scegli tre carte a caso dalla mano del tuo avversario. Il tuo avversario mostra quelle carte e le rimischia nel suo mazzo.",
pt: "Jogue uma moeda. Se sair cara, escolha 3 cards aleatórios na mão do seu oponente. Seu oponente revela esses cards e os embaralha no baralho dele ou dela.",
de: "Wirf 1 Münze. Wähle bei „Kopf“ 3 zufällige Karten aus der verdeckten Hand deines Gegners. Dein Gegner zeigt diese Karten und mischt sie zurück in sein Deck."
}
}
export default card