1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-09 02:37:50 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

40 lines
909 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Sword & Shield'
const card: Card = {
name: {
en: "Switch",
fr: "Échange",
es: "Cambio",
it: "Scambio",
pt: "Substituição",
de: "Tausch"
},
illustrator: "Studio Bora Inc.",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Switch your Active Pokémon with 1 of your Benched Pokémon.",
fr: "Échangez votre Pokémon Actif contre l'un de vos Pokémon de Banc.",
es: "Cambia tu Pokémon Activo por 1 de tus Pokémon en Banca.",
it: "Scambia il tuo Pokémon attivo con uno della tua panchina.",
pt: "Troque o seu Pokémon Ativo por 1 dos seus Pokémon no Banco.",
de: "Tausche dein Aktives Pokémon gegen 1 Pokémon auf deiner Bank aus."
},
trainerType: "Item",
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card