1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +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: "Scramble Switch",
fr: "Échange Combiné",
es: "Cambio en Desbandada",
it: "Scambio Pazzo",
pt: "Chave de Embaralhamento",
de: "Wechselschalter"
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Échangez votre Pokémon Actif avec 1 de vos Pokémon de Banc. Ensuite, vous pouvez déplacer autant dÉnergies attachées à lancien Pokémon Actif vers le nouveau Pokémon Actif que vous voulez.",
en: "Switch your Active Pokémon with 1 of your Benched Pokémon. Then, you may move as many Energy attached to the old Active Pokémon to the new Active Pokémon as you like.",
es: "Cambia a tu Pokémon Activo por 1 de tus Pokémon en Banca. Entonces, puedes mover tantas Energías como quieras del anterior Pokémon Activo al nuevo Pokémon Activo.",
it: "Scambia il tuo Pokémon attivo con uno dei tuoi Pokémon in panchina. Poi, puoi spostare tutte le Energie che vuoi dal Pokémon attivo precedente a quello nuovo.",
pt: "Troque seu Pokémon Ativo por 1 dos Pokémon no seu Banco. Em seguida, você poderá mover tantas Energias ligadas ao antigo Pokémon Ativo para o novo Pokémon Ativo quanto desejar.",
de: "Tausche dein Aktives Pokémon gegen 1 Pokémon auf deiner Bank aus. Du kannst anschließend beliebig viele der an dein altes Aktives Pokémon angelegten Energien auf dein neues Aktives Pokémon verschieben."
},
trainerType: "Item",
}
export default card