mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
24 lines
466 B
TypeScript
24 lines
466 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../FireRed & LeafGreen'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Switch",
|
|
fr: "Échange",
|
|
de: "Tausch"
|
|
},
|
|
|
|
illustrator: "Hiromichi Sugiyama",
|
|
rarity: "Common",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Item",
|
|
|
|
effect: {
|
|
fr: "Échangez votre Pokémon Actif avec 1 des Pokémon de votre Banc.",
|
|
de: "Switch 1 of your Active Pokémon with 1 of your Benched Pokémon."
|
|
}
|
|
}
|
|
|
|
export default card
|