mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 06:42:10 +00:00
42 lines
1010 B
TypeScript
42 lines
1010 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Unified Minds'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Tag Switch",
|
||
fr: "Échange d’Escouade",
|
||
es: "Cambio Relevo",
|
||
it: "Scambio Alleato",
|
||
pt: "Substituição de Aliados",
|
||
de: "Team-Wechsel"
|
||
},
|
||
illustrator: "Yoshinobu Saito",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Déplacez jusqu’à 2 Énergies de l’un de vos Pokémon ESCOUADE vers un autre de vos Pokémon.",
|
||
en: "Move up to 2 Energy from 1 of your TAG TEAM Pokémon to another of your Pokémon.",
|
||
es: "Mueve hasta 2 Energías de 1 de tus Pokémon de equipo de RELEVOS a otro de tus Pokémon.",
|
||
it: "Sposta fino a due Energie da uno dei tuoi Pokémon ALLEATI a un altro dei tuoi Pokémon.",
|
||
pt: "Mova até 2 Energias de 1 dos seus Pokémon ALIADOS para outro Pokémon seu.",
|
||
de: "Verschiebe bis zu 2 Energien von 1 deiner TAG TEAM Pokémon auf 1 anderes deiner Pokémon."
|
||
},
|
||
trainerType: "Item",
|
||
|
||
}
|
||
|
||
export default card
|