mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
24 lines
470 B
TypeScript
24 lines
470 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Dragon Frontiers'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Switch",
|
|
fr: "Échange",
|
|
de: "Tausch"
|
|
},
|
|
|
|
illustrator: "Hiromichi Sugiyama",
|
|
rarity: "Common",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Item",
|
|
|
|
effect: {
|
|
fr: "Échangez 1 de vos Pokémon Actifs avec 1 de vos Pokémon de Banc.",
|
|
de: "Tausche 1 deiner Aktiven Pokémon gegen 1 Pokémon auf deiner Bank aus."
|
|
}
|
|
}
|
|
|
|
export default card
|