1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

23 lines
448 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Expedition Base Set'
const card: Card = {
name: {
en: "Switch",
fr: "Transfert",
de: "Tausch"
},
illustrator: "Keiji Kinebuchi",
rarity: "Common",
category: "Trainer",
set: Set,
effect: {
fr: "Échangez votre Pokémon Actif contre l'un des Pokémon de votre Banc.",
de: "Tausche dein Aktives Pokémon mit 1 der Pokémon auf der Bank aus."
}
}
export default card