mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
23 lines
437 B
TypeScript
23 lines
437 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Base Set'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Switch",
|
|
fr: "Transfert",
|
|
de: "Tausch"
|
|
},
|
|
|
|
illustrator: "Keiji Kinebuchi",
|
|
rarity: "Common",
|
|
category: "Trainer",
|
|
set: Set,
|
|
|
|
effect: {
|
|
fr: "Échangez 1 Pokémon de votre Banc avec votre Pokémon actif.",
|
|
de: "Tausche eines Deiner Pokémon auf der Bank mit Deinem aktiven Pokémon aus."
|
|
}
|
|
}
|
|
|
|
export default card
|