1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

33 lines
369 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Stormfront'
const card: Card = {
name: {
en: "Switch",
fr: "Switch",
},
illustrator: "Ryo Ueda",
rarity: "Common",
category: "Trainer",
set: Set,
effect: {
fr: "Échangez 1 de vos Pokémon Actifs avec 1 de vos Pokémon de Banc.",
},
trainerType: "Item",
}
export default card