1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 17:57:51 +00:00

33 lines
380 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Roaring Skies'
const card: Card = {
name: {
en: "Switch",
fr: "Échange",
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Échangez votre Pokémon Actif avec l'un de vos Pokémon de Banc.",
},
trainerType: "Item",
}
export default card