1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +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

31 lines
993 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Unified Minds'
const card: Card = {
name: {
en: "Tag Switch",
fr: "Échange dEscouade",
es: "Cambio Relevo",
it: "Scambio Alleato",
pt: "Substituição de Aliados",
de: "Team-Wechsel"
},
illustrator: undefined,
rarity: "Secret Rare",
category: "Trainer",
set: Set,
trainerType: "Item",
effect: {
en: "Move up to 2 Energy from 1 of your TAG TEAM Pokémon to another of your Pokémon.",
fr: "Déplacez jusquà 2 Énergies de lun de vos Pokémon ESCOUADE vers un autre de vos 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."
}
}
export default card