1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 05:09:53 +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
966 B
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 '../Black & White'
const card: Card = {
name: {
en: "Energy Switch",
fr: "Échange dÉnergie",
es: "Interruptor de Energía",
it: "Scambio di Energia",
pt: "Substituição de Energia",
de: "Energie-Umschalter"
},
illustrator: "Kent Kanetsuna",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Déplacez une Énergie de base de lun de vos Pokémon vers un autre de vos Pokémon.",
en: "Move a basic Energy from 1 of your Pokémon to another of your Pokémon.",
es: "Mueve una Energía Básica de 1 de tus Pokémon a otro de tus Pokémon.",
it: "Sposta unEnergia base da uno dei tuoi Pokémon a un altro.",
pt: "Mova uma Energia básica de 1 dos seus Pokémon para outro dos seus Pokémon.",
de: "Verschiebe 1 an 1 deiner Pokémon angelegte Basis-Energie auf ein anderes deiner Pokémon."
},
trainerType: "Item",
}
export default card