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.7 KiB
TypeScript
42 lines
1.7 KiB
TypeScript
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 qu’une É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
|