1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

42 lines
938 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 '../Burning Shadows'
const card: Card = {
name: {
en: "Multi Switch",
fr: "Échange Multiple",
es: "Multiinterruptor",
it: "Scambio Multiplo",
pt: "Multissubstituição",
de: "Multitausch"
},
illustrator: "Toyste Beach",
rarity: "Secret Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Déplacez une Énergie de lun de vos Pokémon de Banc vers votre Pokémon Actif.",
en: "Move an Energy from 1 of your Benched Pokémon to your Active Pokémon.",
es: "Mueve 1 Energía de 1 de tus Pokémon en Banca a tu Pokémon Activo.",
it: "Sposta unEnergia da uno dei tuoi Pokémon in panchina al tuo Pokémon attivo.",
pt: "Mova 1 Energia de 1 dos seus Pokémon no Banco para o seu Pokémon Ativo.",
de: "Verschiebe 1 Energie von 1 Pokémon auf deiner Bank auf dein Aktives Pokémon."
},
trainerType: "Item",
}
export default card