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.7 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 '../Dragons Exalted'
const card: Card = {
name: {
en: "Blend Energy Water Lightning Fighting Metal",
fr: "Énergie Amalgamée WaterLightningFightingMetal",
es: "Energía Combinada WaterLightningFightingMetal",
it: "Energia Fusione WaterLightningFightingMetal",
pt: "Energia de Fusão Water Lightning Fighting Metal",
de: "Allerlei-Energie WaterLightningFightingMetal"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Energy",
set: Set,
effect: {
fr: "Cette carte fournit de lÉnergie Colorless. Lorsque cette carte est attachée à un Pokémon, cette carte fournit de lÉnergie Water, Lightning, Fighting ou Metal mais ne fournit quune Énergie à la fois.",
en: "This card provides Colorless Energy. When this card is attached to a Pokémon, this card provides Water, Lightning, Fighting, or Metal Energy but provides only 1 Energy at a time.",
es: "Esta carta proporciona Energía Colorless. Cuando esta carta está unida a un Pokémon, esta carta proporciona Energía Water, Lightning, Fighting o Metal, pero solo 1 Energía a la vez.",
it: "Questa carta fornisce Energia Colorless. Quando è assegnata a un Pokémon, questa carta fornisce Energia Water, Lightning, Fighting o Metal, ma solo una alla volta.",
pt: "Este card fornece Energia Colorless. Quando está ligado a um Pokémon, esse card fornece Energia Water, Lightning, Fighting ou Metal, mas apenas 1 Energia de cada vez.",
de: "Diese Karte liefert Colorless-Energie. Wenn diese Karte an ein Pokémon angelegt ist, zählt sie als Water-, Lightning-, Fighting- oder Metal-Energie, spendet aber immer nur jeweils 1 Energie."
},
energyType: "Special",
}
export default card