mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
42 lines
938 B
TypeScript
42 lines
938 B
TypeScript
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 l’un 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 un’Energia 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
|