1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +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.5 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 '../Plasma Storm'
const card: Card = {
name: {
en: "Ether",
fr: "Huile",
es: "Éter",
it: "Etere",
pt: "Éter",
de: "Äther"
},
illustrator: "Toyste Beach",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Montrez la carte du dessus de votre deck. Si la carte est une carte Énergie de base, attachez-la à 1 de vos Pokémon. Si ce nest pas une carte Énergie de base, remettez-la sur le dessus de votre deck.",
en: "Reveal the top card of your deck. If that card is a basic Energy card, attach it to 1 of your Pokémon. If it is not a basic Energy card, return it to the top of your deck.",
es: "Enseña la primera carta de tu baraja. Si es una carta de Energía Básica, únela a 1 de tus Pokémon. Si no es una carta de Energía Básica, ponla de nuevo en la parte superior de tu baraja.",
it: "Mostra la carta in cima al tuo mazzo. Se è una carta Energia base, assegnala a uno dei tuoi Pokémon. Se non lo è, rimettila in cima al tuo mazzo.",
pt: "Revele o card de cima do seu baralho. Se esse card for um card de Energia básica, ligue-o a 1 dos seus Pokémon. Caso contrário, coloque-o de volta em cima do seu baralho.",
de: "Decke die oberste Karte deines Decks auf. Handelt es sich um eine Basis-Energiekarte, lege sie an 1 deiner Pokémon an. Handelt es sich nicht um eine Basis-Energiekarte, lege sie zurück auf dein Deck."
},
trainerType: "Item",
}
export default card