mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
35 lines
463 B
TypeScript
35 lines
463 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Stormfront'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Switch",
|
|
fr: "Échange",
|
|
de: "Tausch"
|
|
},
|
|
illustrator: "Ryo Ueda",
|
|
rarity: "Common",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Échangez 1 de vos Pokémon Actifs avec 1 des Pokémon de Banc.",
|
|
de: "Tausche 1 deiner Aktiven Pokémon gegen 1 Pokémon auf deiner Bank aus."
|
|
},
|
|
trainerType: "Item",
|
|
|
|
}
|
|
|
|
export default card
|