mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +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.5 KiB
TypeScript
42 lines
1.5 KiB
TypeScript
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 à l’ancien 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
|